Browser’s Developer Tools

Right-click anywhere within the browser screen. Click on Inspect or Inspect Element. Type into the console:

document.designMode = "on"

Result

The webpage turns into an editable webpage. To cancel the editable mode, type in “off” instead of “on”.

Simply refresh the page and the page will go back to normal.

Back To TIL