Skip to content

Instantly share code, notes, and snippets.

@Hunter-Github
Created January 31, 2016 18:45
Show Gist options
  • Save Hunter-Github/446d8fd36899a7d9180a to your computer and use it in GitHub Desktop.
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
// ==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