// ==UserScript== // @name 蜜柑计划(Mikan Project)直接打开磁力链接 // @namespace https://github.com/Blacktea0 // @version 0.3 // @description 在复制磁力链接的时候同时打开该链接 // @author Blacktea0 // @match http*://mikanani.me/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== 'use strict'; (function () { var $; if (window.$) { $ = window.$; } else { console.log('jQuery not found.'); return; } $(document).on('click', '[data-clipboard-text]', function (event) { var target = event.target; var text = $(target).attr('data-clipboard-text'); window.open(text, '_blank').focus(); }); })();