Greasy Fork is available in English.
新页面(标签)打开
// ==UserScript==
// @name 新标签打开
// @description 新页面(标签)打开
// @namespace http://tampermonkey.net/
// @version 0.1.10
// @author imgreasy
// @match https://ourbits.club/*
// @match https://hdchina.org/*
// @match https://totheglory.im/*
// @match https://kp.m-team.cc/*
// @match https://springsunday.net/*
// @match https://lemonhd.org/*
// @match https://audiences.me/*
// @match https://hhanclub.top/*
// @match https://club.hares.top/*
// @match https://totheglory.im/*
// @match https://pterclub.com/*
// @match https://pt.keepfrds.com/*
// @match https://leaves.red/*
// @icon https://raw.githubusercontent.com/zjutjh/NexusPHP/master/favicon.ico
// @license MIT
// @grant none
// @run-at document-end
// @homepageURL http://greasyfork.icu/zh-CN/scripts/457597
// ==/UserScript==
(function() {
'use strict';
const settings = new Map([
["kp.m-team.cc", "#form_torrent a"],
['totheglory.im', '#torrent_table tbody a'],
["ourbits.club", "#torrenttable a"],
["hdchina.org", "#form_torrent .torrent_list a"],
['springsunday.net', '#outer .torrents a'],
['lemonhd.org', '#outer .torrents a'],
['audiences.me', '#torrenttable a'],
['hhanclub.top', '#outer .torrents a'],
['club.hares.top', '.torrents tbody a'],
['pterclub.com', '#torrenttable tbody a'],
['pt.keepfrds.com', '#form_torrent .torrents tbody a'],
['leaves.red', '#outer .torrents .torrentname tbody td a']
]);
const path = settings.get(window.location.hostname);
document.querySelectorAll(path).forEach(function (row) {
if (row.href.indexOf('download') == -1) {
if (row.href.slice(0,4) == 'http' || row.href.slice(0,5) == 'https') {
row.target = '_blank'
}
}
});
})();