Skip to content

Instantly share code, notes, and snippets.

@EIIisD
Last active July 13, 2025 20:38
Show Gist options
  • Save EIIisD/77fd085125dd0faa038c83205af53f84 to your computer and use it in GitHub Desktop.
Save EIIisD/77fd085125dd0faa038c83205af53f84 to your computer and use it in GitHub Desktop.
Tampermonkey Script: example-script
// ==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