// ==UserScript== // @name 蜜柑计划(Mikan Project)直接打开磁力链接 // @namespace https://github.com/Blacktea0 // @version 0.1 // @description 在复制磁力链接的时候直接打开该链接 // @author Blacktea0 // @match *://mikanani.me/* // @grant none // @downloadURL none // ==/UserScript== 'use strict'; (function() { $(document).on('click', event => { let target = event.target; let text = $(target).attr('data-clipboard-text'); if (text !== undefined) { $(target).attr('href', text); } }) })();