script for greatest.deepsurf.us function①some links open in new tab[部分链接在新窗口中打开]
// ==UserScript==
// @name Greasyfork +
// @namespace http://tampermonkey.net/
// @version 0.1
// @description script for greatest.deepsurf.us function①some links open in new tab[部分链接在新窗口中打开]
// @author 黄盐
// @match *://greatest.deepsurf.us/*
// @grant none
// ==/UserScript==
(function() {
//match: greatest.deepsurf.us/*/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: greatest.deepsurf.us/*/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");});
}
})();