点击激活url

点击链接激活

目前為 2016-12-31 提交的版本,檢視 最新版本

// ==UserScript==
// @name         点击激活url
// @namespace   https://gf.qytechs.cn/zh-CN/users/15432-kirikiri
// @version      1.1
// @description  点击链接激活
// @author       kirikiri
// @include     http*://*/*
// @grant        none
// ==/UserScript==

//(function() {
//'use strict';
document.onclick = function(e) {
    var link = /((https?:\/\/)(\.|\w|-|#|\?|=|\/|\+|%|&|:|;|!|(?![\u4e00-\u9fa5\s*\n\r'"]))+)/g;
    var tcon = e.target.innerHTML;
    if (!tcon.match(/<a|src|href/)){
        if (tcon.match(link) &&  e.target.tagName !== "BODY" &&  e.target.tagName !== "HTML"){
            e.target.innerHTML = tcon.replace(link ,'<a target="_blank" href="$1" style=" color: rgb(63, 211, 68);text-decoration:none;">$1</a>');
        }
      //  console.log(e.target.innerHTML);
    }
};
// Your code here...
//})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址