An open API service indexing awesome lists of open source software.

https://github.com/engrshuvodas/editweb-now

It makes any website editable in the browser by enabling content editing and design mode. This is often used for fun, demos, or temporary visual changes (note: it doesn't actually change the real website for others).
https://github.com/engrshuvodas/editweb-now

edit javascript-hack javascript-hacks webedit webeditor

Last synced: 5 months ago
JSON representation

It makes any website editable in the browser by enabling content editing and design mode. This is often used for fun, demos, or temporary visual changes (note: it doesn't actually change the real website for others).

Awesome Lists containing this project

README

          

🛠️ Edit Any Website Using Code


You can make any website temporarily editable using the following JavaScript snippet. Just copy it, paste it into your browser's address bar, and hit enter:


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

💡 Tip: You must include javascript: at the beginning and run it directly in the browser's address bar. This does not make permanent changes—only temporary, local edits.

⚠️ Note: Some browsers may block JavaScript in the address bar. In that case, create a bookmark and paste this code in the URL field to use it as a bookmarklet.