Created
January 31, 2016 18:45
-
-
Save Hunter-Github/446d8fd36899a7d9180a to your computer and use it in GitHub Desktop.
A simple GreaseMonkey script template to implement a user-defined CSS without Stylish
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
// ==UserScript== | |
// @name Fix some style in GreaseMonkey | |
// @match *://example.com/* | |
// @copyright 2016+, You | |
// @grant GM_addStyle | |
// ==/UserScript== | |
GM_addStyle ( " \ | |
// ADD YOUR CSS HERE | |
" ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment