Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 425 Bytes

chrome_design_mode.md

File metadata and controls

13 lines (7 loc) · 425 Bytes

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

... and click it at any time to make any page easy to edit.