Tuesday, August 25, 2015

Transform Web Browser to Editor Trick

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!

No comments:

Post a Comment

Going one step further with Kotlin & gRPC

Recently, I tried using Quarkus with Kotlin for grpc. I have worked with grpc for communication between microservices in Java & Golang. ...