琉璃神社自动生成链接

try to take over the world!

Fra 29.12.2019. Se den seneste versjonen.

// ==UserScript==
// @name         琉璃神社自动生成链接
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  try to take over the world!
// @author       wcx19911123
// @match        *www.liuli.se/wp/*
// @grant        none
// ==/UserScript==

(function() {
    var body = document.getElementsByTagName("body")[0];
    var strList = body.innerHTML.match(/[0-9a-z]{40}/g);
    for(var i = 0; strList && i < strList.length; i++){
        body.innerHTML = body.innerHTML.replace(strList[i], "<a href='magnet:?xt=urn:btih:"+strList[i]+"'>下载链接</a>")
    }
})();