Skip to content

Instantly share code, notes, and snippets.

View Hunter-Github's full-sized avatar

Space exploration enthusiast Hunter-Github

View GitHub Profile
@Hunter-Github
Hunter-Github / restyling_template.user.js
Created January 31, 2016 18:45
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
" );