Created
April 20, 2019 23:50
-
-
Save negipo/9a9e19defde9f8c5a401782ec22ea50d to your computer and use it in GitHub Desktop.
This file contains 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 negipo test for tampermonkey | |
// @namespace http://polog.org/ | |
// @version 0.1 | |
// @description test | |
// @author negipo | |
// @match https://www.google.com/* | |
// @grant GM_setValue | |
// @grant GM_getValue | |
// @grant GM_setClipboard | |
// @grant unsafeWindow | |
// @grant window.close | |
// @grant window.focus | |
// @requrire https://code.jquery.com/jquery-3.4.0.slim.min.js | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
alert(1) | |
// Your code here... | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment