This script will replace all "www.csgoroll.com/en/pvp/" text messages to clickable links.
当前为
// ==UserScript==
// @name CSGORoll - Text to Link
// @namespace https://gge.gg
// @version 0.1
// @description This script will replace all "www.csgoroll.com/en/pvp/" text messages to clickable links.
// @author twitter.com/thes0meguy
// @match https://www.csgoroll.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=csgoroll.com
// @grant none
// @license WTFPL
// ==/UserScript==
(function() {
'use strict';
setInterval(function() {
var textSpans = document.querySelectorAll('span');
for (var i = 0; i < textSpans.length; i++) {
var span = textSpans[i];
var text = span.textContent;
if (text.includes("en/pvp")) {
var regex = /(en\/pvp\/[^\s]+)/gi;
var newText = text.replace(regex, '<a href="https:\/\/www\.csgoroll\.com\/$&" target="_blank" style="color: #ff5548;">$&</a>');
span.innerHTML = newText;
}
}
}, 500);
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址