-
-
Save spookyahell/0850a9689c3ae263abe503ffa8c860e0 to your computer and use it in GitHub Desktop.
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 Test | |
// @version 1.0.0 | |
// @namespace @XOR | |
// @include *google.com* | |
// @grant GM.notification | |
// @grant GM.openInTab | |
// @grant GM.setClipboard | |
// ==/UserScript== | |
GM.openInTab('https://www.google.com'); | |
GM.setClipboard('Hello World'); | |
GM.notification({text: 'This is a text', title: 'Notification 2', onclick: () => console.log('NotificationClick') }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment