Skip to content

Instantly share code, notes, and snippets.

@1a57danc3
Created March 6, 2019 14:42
Show Gist options
  • Save 1a57danc3/927c7445911b2c7276722a4ef2013028 to your computer and use it in GitHub Desktop.
Save 1a57danc3/927c7445911b2c7276722a4ef2013028 to your computer and use it in GitHub Desktop.
Display DOM Edge
javascript:!document.querySelector('style#ghost')&&(document.body.innerHTML+='<style id="ghost">html.ghost *{background:#000 !important;color:#0f0 !important;outline:solid #f00 1px !important;}</style>');document.documentElement.classList.toggle('ghost');
javascript:const getRandomColor =() => { let letters = '0123456789ABCDEF';let color = '#';for (let i = 0; i < 6; i++) {color += letters[Math.floor(Math.random() * 16)];}return color;};Array.from(document.all).forEach(el => el.style.outline = `1px solid ${getRandomColor()}`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment