Greasyfork +

script for gf.qytechs.cn function①some links open in new tab[部分链接在新窗口中打开]

// ==UserScript==
// @name         Greasyfork +
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  script for gf.qytechs.cn function①some links open in new tab[部分链接在新窗口中打开]
// @author       黄盐
// @match        *://gf.qytechs.cn/*
// @grant        none
// ==/UserScript==

(function() {
    //match: gf.qytechs.cn/*/scripts/*[^(feedback)]$
    if(document.querySelectorAll("#browse-script-list a").length>0){
        [].slice.call(document.querySelectorAll("#browse-script-list a")).forEach(function(aTag) {aTag.setAttribute('target', '_blank');console.log("1");});
    }
    //match: gf.qytechs.cn/*/scripts/*/feedback
    else if(document.querySelectorAll("#discussions a").length>0){
        [].slice.call(document.querySelectorAll("#discussions a")).forEach(function(aTag) {aTag.setAttribute('target', '_blank');console.log("2");});
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址