Created
November 10, 2010 15:32
-
-
Save anderssvendal/670994 to your computer and use it in GitHub Desktop.
Userscript to remove canvas from paulirish.com
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== | |
// @match http://*.paulirish.com/* | |
// @match http://www.paulirish.com/* | |
// ==/UserScript== | |
(document.getElementsByTagName('canvas')[0]).parentElement.removeChild(document.getElementsByTagName('canvas')[0]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment