// ==UserScript== // @name 预警标签添加文字 // @namespace http://tampermonkey.net/ // @version 2025-01-08 // @description 猜不到用在哪里吧 // @author You // @match https://*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=scopus.com // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... setInterval(() => { for (const s of document.querySelectorAll("span.scolor-sos")) { if (!s.dataset.txt) { s.dataset.txt="预警" var newTextNode = document.createElement("span") newTextNode.style.color = "red" newTextNode.textContent = "预警 " + s.title.split(/《|》|预警/)[1] //title.indexOf("预警")) newTextNode.className = "sos-text" s.appendChild(newTextNode); } } },100) })();