您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
YourBittorrent 点击磁力链接时自动打开下载软件
// ==UserScript== // @name YourBittorrent 链接点击拉起下载 // @description YourBittorrent 点击磁力链接时自动打开下载软件 // @namespace https://greasyfork.org/zh-CN/users/948411 // @version 1.3 // @author Moe // @license MIT // @match https://yourbittorrent2.com/torrent/* // @icon https://yourbittorrent2.com/apple-touch-icon.png // @grant none // ==/UserScript== (function() { 'use strict'; let content = document.querySelector('kbd'); content.style.cursor = 'pointer'; content.addEventListener('click', function() { window.open(`magnet:?xt=urn:btih:${content.innerText}`); }); })();