琉璃神社自动生成链接

try to take over the world!

Από την 17/09/2019. Δείτε την τελευταία έκδοση.

  1. // ==UserScript==
  2. // @name 琉璃神社自动生成链接
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author wcx19911123
  7. // @match *www.liuli.uk/wp/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. var body = document.getElementsByTagName("body")[0];
  13. var strList = body.innerHTML.match(/[0-9a-z]{40}/g);
  14. for(var i = 0; i < strList.length; i++){
  15. body.innerHTML = body.innerHTML.replace(strList[i], "<a href='magnet:?xt=urn:btih:"+strList[i]+"'>下载链接</a>")
  16. }
  17. })();