Greasy Fork

嗅探下载组合包

脚本整合

目前为 2025-03-15 提交的版本。查看 最新版本

// ==UserScript==
// @name         嗅探下载组合包
// @namespace    https://facaikotei.github.io/
// @version      1
// @description  脚本整合
// @match        *://*/*
// @license      GPL-3.0
// @homepageURL  https://greasyfork.org/zh-TW/scripts/529908-%E5%97%85%E6%8E%A2%E4%B8%8B%E8%BD%BD%E7%BB%84%E5%90%88%E5%8C%85
// ==/UserScript==

(function() {
    'use strict';

    document.getElementById("MyUpDown").onclick=function(){
        if(!document.getElementsByClassName("tyc-image-container")[0]){
            document.dispatchEvent(new KeyboardEvent("keydown",{keyCode:87,altKey:true}));
        }
    };
})();