Greasy Fork

去除W3Schools “notranslate”

去除W3Schools table “notranslate” css class

目前为 2020-09-02 提交的版本。查看 最新版本

// ==UserScript==
// @name         去除W3Schools “notranslate”
// @namespace    https://greasyfork.org/users/37096/
// @homepage     https://greasyfork.org/scripts/33021/
// @supportURL   https://greasyfork.org/scripts/33021/feedback
// @version      0.8
// @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      https://greasyfork.org/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");
  $("table tbody tr td a").addClass("notranslate");
})();