Skip to content

Instantly share code, notes, and snippets.

@mokkabonna
Created March 12, 2020 14:34
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 mokkabonna/2a0ee74c7eb3ac799091b909675a5929 to your computer and use it in GitHub Desktop.
Save mokkabonna/2a0ee74c7eb3ac799091b909675a5929 to your computer and use it in GitHub Desktop.
i feel lucky
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.google.com/url?q=*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.location = decodeURIComponent(location.search.slice(3))
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment