DEV Community

JustOptimize
JustOptimize

Posted on

Toggle God Mode in browsers

Instead of typing

document.designMode = "on"

or

document.designMode = "off"

in the console for every page you want to edit (like this)
Edit Manually

You can create a bookmark to toggle it with just one click!

To make this it's easy:

  • Right click on your bookmark bar
  • Click add page
  • Name it whatever you want
  • And just paste this in the link section:
javascript:((d,o,m)=>{d[m]=d[m]!==o?o:"off"})(document,"on","designMode");
Enter fullscreen mode Exit fullscreen mode

Top comments (0)