Skip to content

Instantly share code, notes, and snippets.

@rishubil
Last active August 2, 2022 09:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rishubil/578b9c7c4844f5cc581daeba0cdefac3 to your computer and use it in GitHub Desktop.
Save rishubil/578b9c7c4844f5cc581daeba0cdefac3 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Remove notranslate class on tldrnewsletter
// @description Remove notranslate class on tldrnewsletter
// @version 0.1.1
// @match https://actions.tldrnewsletter.com/*
// @updateURL https://gist.github.com/rishubil/578b9c7c4844f5cc581daeba0cdefac3/raw/remove-notranslate-tldrnewsletter.user.js
// @downloadURL https://gist.github.com/rishubil/578b9c7c4844f5cc581daeba0cdefac3/raw/remove-notranslate-tldrnewsletter.user.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll(".notranslate").forEach((element) => {element.classList.remove("notranslate")})
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment