Skip to content

Instantly share code, notes, and snippets.

@negipo
Created April 20, 2019 23:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save negipo/9a9e19defde9f8c5a401782ec22ea50d to your computer and use it in GitHub Desktop.
Save negipo/9a9e19defde9f8c5a401782ec22ea50d to your computer and use it in GitHub Desktop.
// ==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