Skip to content

Instantly share code, notes, and snippets.

@rishubil
Last active October 19, 2024 09:16
Show Gist options
  • Save rishubil/61b813a47af99d22754ddf908b9969f2 to your computer and use it in GitHub Desktop.
Save rishubil/61b813a47af99d22754ddf908b9969f2 to your computer and use it in GitHub Desktop.
// ==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