Forked from joelennon/gist:4896ba84794a028137ef8be2f24eae09
Created
February 5, 2018 13:44
-
-
Save LespiletteMaxime/9bc8cd4ec31148259b891afb03d7eb1e to your computer and use it in GitHub Desktop.
Bookmarklet for highlighting all elements on a page (hat tip: @adamwathan)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){var style=document.createElement('style');style.innerText='*{outline:1px solid red !important;';document.head.appendChild(style);})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment