Skip to content

Instantly share code, notes, and snippets.

View dstalor's full-sized avatar
🇮🇱
עם ישראל חי!

Daniel Tal-Or dstalor

🇮🇱
עם ישראל חי!
View GitHub Profile
// create a bookmark and use this code as the URL, you can now toggle the css on/off
// thanks+credit: https://dev.to/gajus/my-favorite-css-hack-32g3
// and: https://gist.github.com/vcastroi
javascript: (function() {
/* use style instead of * so it doesn't need to parse everything */
var elements = document.body.getElementsByTagName('style');
var items = [];
for (var i = 0; i < elements.length; i++) {
if (elements[i].innerHTML.indexOf('* { background: rgba(255,0,0,.2) !important;color:#0f0!important;outline:solid #f00 1px!important; }') != -1) {