Skip to content

Instantly share code, notes, and snippets.

@on4r
Last active January 30, 2022 15:17
Show Gist options
  • Save on4r/761d4259d6d36fbd3f7b2b5036a757d4 to your computer and use it in GitHub Desktop.
Save on4r/761d4259d6d36fbd3f7b2b5036a757d4 to your computer and use it in GitHub Desktop.
Greasemonkey script to remove deprecated methods from MDN
// ==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