Get the latest tech news
Word-like HTML inline edit with design mode
Google Chrome: Design Mode = ON let's you edit inline F12, dev tools -- then enter this in the console document.designMode="on"; Now you can type on any element of the webpage and change what it says. You can also create a bookmarklet called 'edit' with this as the URL: javascript:document.body.contentEditable='true'; document.designMode='on'; void 0 ...
F12, dev tools -- then enter this in the console You can also create a bookmarklet called 'edit' with this as the URL: ... and click it at any time to make any page easy to edit.
Or read this on Hacker News