Greasy Fork is available in English.

蜜柑计划(Mikan Project)直接打开磁力链接

在复制磁力链接的时候同时打开该链接

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         蜜柑计划(Mikan Project)直接打开磁力链接
// @namespace    https://github.com/Blacktea0
// @version      0.3
// @description  在复制磁力链接的时候同时打开该链接
// @author       Blacktea0
// @match        http*://mikanani.me/*
// @grant        none
// @license      MIT
// ==/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();
  });
})();