1. Use web browser as plain text text editor, try using bookmarklet
type in browser's address bar: data:text/html, <html contenteditable>
2. Make a webpage's contents editable, without losing styling, execute on JavaScript console or via bookmarklet.
javascript: document.body.contentEditable='true'; document.designMode='on'; void 0;
"void 0;" is very important!
type in browser's address bar: data:text/html, <html contenteditable>
2. Make a webpage's contents editable, without losing styling, execute on JavaScript console or via bookmarklet.
javascript: document.body.contentEditable='true'; document.designMode='on'; void 0;
"void 0;" is very important!
No comments:
Post a Comment