Forked from Hunter-Github/restyling_template.user.js
Created
January 6, 2023 16:16
-
-
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
This file contains hidden or 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