Skip to content

Instantly share code, notes, and snippets.

@rynomad
Created April 10, 2023 04:10
Show Gist options
  • Save rynomad/d6dbf6e7b6f3d223f2db3bc5d8a1545d to your computer and use it in GitHub Desktop.
Save rynomad/d6dbf6e7b6f3d223f2db3bc5d8a1545d to your computer and use it in GitHub Desktop.
Greets the user with a popup message when they visit a website.
// ==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