Last active
July 13, 2025 20:38
-
-
Save EIIisD/77fd085125dd0faa038c83205af53f84 to your computer and use it in GitHub Desktop.
Tampermonkey Script: example-script
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 Example Script | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description A simple example Tampermonkey script. | |
// @author You | |
// @match https://*.google.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
// src/example-script/index.ts | |
(function() { | |
GM_addStyle(`body { | |
border: 5px solid red !important; | |
} | |
`); | |
console.log("Example script loaded!"); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment