Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save akhiljalagam/4d5ef09b9e04ab7377495ad02ed3b22e to your computer and use it in GitHub Desktop.
Save akhiljalagam/4d5ef09b9e04ab7377495ad02ed3b22e 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