Skip to content

Instantly share code, notes, and snippets.

@anderssvendal
Created November 10, 2010 15:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anderssvendal/670994 to your computer and use it in GitHub Desktop.
Save anderssvendal/670994 to your computer and use it in GitHub Desktop.
Userscript to remove canvas from paulirish.com
// ==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