Skip to content

Instantly share code, notes, and snippets.

@MathieuAlphamosa
Last active April 1, 2022 11:45
Show Gist options
  • Save MathieuAlphamosa/caeab225073e2b29a4ec33387564f3c4 to your computer and use it in GitHub Desktop.
Save MathieuAlphamosa/caeab225073e2b29a4ec33387564f3c4 to your computer and use it in GitHub Desktop.

Design Mode - Bookmarklet

Ce bookmarklet permet d'éditer le contenu d'une page web.

Totalement copié inspiré de https://css-tricks.com/web-development-bookmarklets/

Comment installer un bookmarklet ? https://mreidsma.github.io/bookmarklets/installing.html

javascript: if(document.designMode!='on'){document.designMode='on';let div = document.createElement('div');div.id='design-mode-on';div.style.position='fixed';div.style.inset='0';div.style.zIndex=20000;div.style.pointerEvents='none';div.style.boxShadow='inset 0 0 0 6px fuchsia';document.body.appendChild(div);}else{document.designMode='off';document.getElementById('design-mode-on').remove();}void 0;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment