Javascript to Allow Editing of ANY Web Page

This code snippet comes in handy for the times you want to edit a page quickly and print it, or take a screenshot, or just to see how something looks. It has some valid uses and can probably be used in some sneaky ways as well – but nevertheless it’s a useful code snippet.

javascript:document.body.contentEditable='true'; document.designMode='on'; void 0

Just go to whatever page you want to edit, paste the code in your address bar (and click enter) and you will be able to edit and delete anything on the page.