Greasy Fork is available in English.

点击激活url

点击链接激活

// ==UserScript==
// @name         点击激活url
// @namespace   https://greasyfork.org/zh-CN/users/15432-kirikiri
// @version      1.3
// @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;
    if (!e.target.innerHTML.match(/<a/) && e.target.innerText.match(link) && e.path.length > 4) {
        e.target.innerHTML = e.target.innerHTML.replace(link ,'<a target="_blank" href="$1" style="text-decoration:none;">$1</a>');
    }
};
// Your code here...
//})();