Skip to content

Instantly share code, notes, and snippets.

@spookyahell
Forked from xor10/test_api.user.js
Created August 22, 2018 18:19
Show Gist options
  • Save spookyahell/0850a9689c3ae263abe503ffa8c860e0 to your computer and use it in GitHub Desktop.
Save spookyahell/0850a9689c3ae263abe503ffa8c860e0 to your computer and use it in GitHub Desktop.
// ==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