Sleazy Fork is available in English.

BTSOW复制修复

BTSOW的复制修复

// ==UserScript==
// @name         BTSOW复制修复
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  BTSOW的复制修复
// @author       lvzhenbo
// @match        https://btsow.bar/magnet/*
// @icon         https://btsow.bar/app/bts/View/img/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var button = document.getElementById('copyToClipboard');
    button.addEventListener('click', function () {
        var text = document.getElementById('magnetLink');
        text.select();
        document.execCommand("copy");
        alert("复制成功");
    }, false);
})();