Last active
March 9, 2017 12:29
-
-
Save AviDuda/6a7d05781c7874225495 to your computer and use it in GitHub Desktop.
Skip Steam linkfilter
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 Skip Steam linkfilter | |
// @version 1.0 | |
// @description Fuck linkfilter | |
// @match http://steamcommunity.com/linkfilter/?url=* | |
// @match http://steamcommunity.com/linkfilter?url=* | |
// @match https://steamcommunity.com/linkfilter/?url=* | |
// @match https://steamcommunity.com/linkfilter?url=* | |
// @run-at document-start | |
// ==/UserScript== | |
var url = window.location.href.match(/steamcommunity\.com\/linkfilter[/]*\?url=(.*)/)[1]; | |
window.location.replace(url); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment