您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
不能为空字符
当前为
// ==UserScript== // @name 新页面打开种子详情页面 // @description 不能为空字符 // @namespace http://tampermonkey.net/ // @version 0.1.3 // @author imgreasy // @match https://ourbits.club/* // @match https://hdchina.org/* // @match https://www.v2ex.com/* // @icon https://raw.githubusercontent.com/zjutjh/NexusPHP/master/favicon.ico // @license MIT // @grant none // @run-at document-end // @homepageURL https://gf.qytechs.cn/zh-CN/scripts/457597 // ==/UserScript== (function() { 'use strict'; switch(window.location.host) { case "ourbits.club": document.querySelector('#torrenttable').querySelectorAll('.sticky_top_more a').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' } } }); break; case "hdchina.org": document.querySelector('#form_torrent').querySelectorAll('.torrent_list .stickz_bg a').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' } } }); break; default: console.log("hi"); break; } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址