Skip to content

Instantly share code, notes, and snippets.

@fisknils
Last active May 24, 2019 06:25
Show Gist options
  • Save fisknils/1e275eddceafe0f7c06955b09e4798e1 to your computer and use it in GitHub Desktop.
Save fisknils/1e275eddceafe0f7c06955b09e4798e1 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name [DEBUG] CSS
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @include *
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle('* { color: hsla(210, 100%, 100%, 0.9) !important; background: hsla(210, 100%, 50%, 0.5) !important; outline: solid 0.25rem hsla(210, 100%, 100%, 0.5) !important;}');
})();
/*
https://gist.github.com/fisknils/243ac1e5f2a1748e7ee500c03d645d3f
https://medium.freecodecamp.org/heres-my-favorite-weird-trick-to-debug-css-88529aa5a6a3
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment