This makes all the text in the current webpage editable until you refresh it! It does that by enabling the designMode flag on your browser.
- Add a new bookmark.
- Copy
editPage.js
and paste it into the URL field of the bookmark. - Save.
- Click the bookmark when you are in the page you wish to edit and voilá!
- Click on a text element and edit its text
javascript:document.body.contentEditable = 'false'; document.designMode='off'; void 0
Reverses it