您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
给页面中各种元素添加 skiptranslate 类,并每秒运行一次
// ==UserScript== // @name 给各种元素添加 skiptranslate 类 // @namespace yournamespace // @version 1.0 // @description 给页面中各种元素添加 skiptranslate 类,并每秒运行一次 // @match file:///* // @match *://*/* // @grant none // @license MIT // ==/UserScript== (function() { setInterval(addSkipTranslateClass, 1000); // 每秒运行一次 addSkipTranslateClass 函数 var arr_cfg = [ "[class^=enlighter]", "a[target=_top]", "pre", "strong", "blockquote", "a", "i", "code", "table", ".socode", ".math", ".ssCodeTableBody", ".codesnippet", ".Codigo", ".prettyprint", "div.console", "span.socode", ".codes", ".codebox", ".codeseg", ".regexplain", ".match", ".syntax", ".string", "#toc", "em" ]; function addSkipTranslateClass() { for (var item of arr_cfg) { var myNodelist = document.querySelectorAll(item); for (var i = 0; i < myNodelist.length; i++) { myNodelist[i].classList.add('skiptranslate'); } } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址