您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
猜不到用在哪里吧!
// ==UserScript== // @name 预警标签添加文字 // @namespace http://tampermonkey.net/ // @version 2025-04-18-002 // @description 猜不到用在哪里吧! // @author You // @match https://*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=scopus.com // @grant none // @license MIT // ==/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) })();