Skip to content

Instantly share code, notes, and snippets.

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;