tophub&greasyfork新标签页打开

链接从新标签页打开

目前为 2020-12-20 提交的版本。查看 最新版本

// ==UserScript==
// @name            tophub&greasyfork新标签页打开
// @namespace       mine.com
// @description     链接从新标签页打开
// @match        *://tophub.today/*
// @match        *://greasyfork.org/zh-CN/scripts
// @version         1.0
// ==/UserScript==

(function() {
    document.querySelectorAll('a').forEach(item => {
        if(!/javascript/.test(item.href)) {
            item.setAttribute('target','_blank');
        }
    });
})();