YourBittorrent 链接点击拉起下载

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}`); });
})();