Last active
October 19, 2024 09:16
-
-
Save rishubil/61b813a47af99d22754ddf908b9969f2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Add notranslate class on webtoolsweekly | |
// @description Add notranslate class on webtoolsweekly | |
// @version 0.0.1 | |
// @match https://mailchi.mp/webtoolsweekly/* | |
// @updateURL https://gist.github.com/rishubil/61b813a47af99d22754ddf908b9969f2/raw/notranslate-webtoolsweekly.user.js | |
// @downloadURL https://gist.github.com/rishubil/61b813a47af99d22754ddf908b9969f2/raw/notranslate-webtoolsweekly.user.js | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.querySelectorAll("a").forEach((element) => {element.classList.add("notranslate")}) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment