Created
July 13, 2025 20:39
-
-
Save EIIisD/3d0894463eb31a2e62a6030a649d3ed2 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