您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
去除W3Schools table “notranslate” css class
当前为
// ==UserScript== // @name 去除W3Schools “notranslate” // @namespace http://greasyfork.icu/users/37096/ // @homepage http://greasyfork.icu/scripts/33021/ // @supportURL http://greasyfork.icu/scripts/33021/feedback // @version 0.5 // @description 去除W3Schools table “notranslate” css class // @author zhouhaiboa // @match https://www.w3schools.com/*/*.asp // @match https://www.w3schools.com/*/*.asp* // @icon https://www.w3schools.com/favicon.ico // @require https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js // @require http://greasyfork.icu/scripts/30368-highlight-words-jquery-library/code/Highlight%20Words%20Jquery%20Library.js?version=199098 // @compatible chrome // @compatible firefox // @compatible opera // @license GNU GPLv3 // @grant GM_addStyle // ==/UserScript== (function() { $("table").removeClass("notranslate"); var trs = $("table tr"); var i, j; for(i in trs) { tds = i.children(); for(j in tds) { j.addClass("notranslate"); } } })();