Skip to content

Instantly share code, notes, and snippets.

@dbtek
Created November 19, 2018 10:52
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 dbtek/7bf8fcb1154f174ebaa31332661b18b2 to your computer and use it in GitHub Desktop.
Save dbtek/7bf8fcb1154f174ebaa31332661b18b2 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Google Redirect Bypass
// @version 0.1
// @description Google redirect bypass script.
// @author Ismail Demirbilek
// @match https://www.google.com/url*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var params = new URLSearchParams(window.location.search)
window.location = params.get('url')
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment