Greasy Fork

Greasy Fork is available in English.

NGA新标签打开帖子

让NGA论坛点击帖子可以打开新标签

当前为 2017-04-11 提交的版本,查看 最新版本

// ==UserScript==
// @name         NGA新标签打开帖子
// @namespace    undefined
// @version      0.7
// @description  让NGA论坛点击帖子可以打开新标签
// @author       法爷
// @match        *://*.ngacn.cc/*
// @match        *://*.nga.cn/*
// @grant        none
// ==/UserScript==

(function() {
    document.querySelectorAll('a.topic').forEach(item => item.setAttribute('target','_blank'));
})();