Created
April 10, 2023 04:10
-
-
Save rynomad/d6dbf6e7b6f3d223f2db3bc5d8a1545d to your computer and use it in GitHub Desktop.
Greets the user with a popup message when they visit a website.
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 Hello World Script | |
// @namespace Violentmonkey Scripts | |
// @version 1.0 | |
// @description Greets the user with a popup message when they visit a website. | |
// @author Your Name | |
// @match *://*/* | |
// @grant GM_notification | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_notification("Hello world!"); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment