Last active
January 30, 2022 15:17
-
-
Save on4r/761d4259d6d36fbd3f7b2b5036a757d4 to your computer and use it in GitHub Desktop.
Greasemonkey script to remove deprecated methods from MDN
This file contains hidden or 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 Remove Deprecated Methods | |
// @version 1 | |
// @grant none | |
// @match https://developer.mozilla.org/* | |
// ==/UserScript== | |
document.querySelectorAll('.icon-deprecated').forEach(node => node.parentNode.remove()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment