// ==UserScript== // @name 文本变链接 // @namespace ACScript // @version 1.1 // @description 点击http、https、magnet协议文本变为超链接 // @author 狐狸 // @include http://* // @include https://* // @grant none // @run-at document-end // @downloadURL none // ==/UserScript== (function() { document.onclick = function(e) { var link = /((magnet?:)(\.|\w|-|#|\?|=|\/|\+|@|%|&|:|;|!|\*|(?![\u4e00-\u9fa5\s*\n\r'"]))+)/g; if (!e.target.innerHTML.match(/ 4) { e.target.innerHTML = e.target.innerHTML.replace(link ,'$1'); } }; })(); (function() { document.onclick = function(e) { var link = /((https?:\/\/)(\.|\w|-|#|\?|=|\/|\+|@|%|&|:|;|!|\*|(?![\u4e00-\u9fa5\s*\n\r'"]))+)/g; if (!e.target.innerHTML.match(/ 4) { e.target.innerHTML = e.target.innerHTML.replace(link ,'$1'); } }; })();