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

使用外部应用打开磁力链接

目前为 2022-11-27 提交的版本。查看 最新版本

// ==UserScript==
// @name        直接打开蜜柑计划 Mikan 磁力链接
// @namespace   Dreace
// @match       http*://mikanani.me/*
// @grant       none
// @license     MIT
// @version     1.0
// @author      -
// @description 使用外部应用打开磁力链接
// @require https://cdn.jsdelivr.net/npm/@violentmonkey/dom@2

// ==/UserScript==

let hack = () => {
  for(let a of document.querySelectorAll('.magnet-link')){
    if(a.classList.contains("processed")) {
      continue;
    }
    a.classList.add("processed");
    b = a.cloneNode();
    b.href = b.dataset.clipboardText;
    delete b.dataset.clipboardText;
    b.text="[打开磁力链]";
    a.parentElement.insertBefore(b, a.nextSibling);
  }
  VM.observe(document.body, hack);
  return true;
};

hack();