Created
November 19, 2018 10:52
-
-
Save dbtek/7bf8fcb1154f174ebaa31332661b18b2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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