Greasy Fork is available in English.
脚本整合
当前为
// ==UserScript==
// @name 嗅探下载组合包
// @namespace https://facaikotei.github.io/
// @version 1
// @description 脚本整合
// @match *://*/*
// @license GPL-3.0
// ==/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}));
}
};
})();