Skip to content

Instantly share code, notes, and snippets.

@AviDuda
Last active March 9, 2017 12:29
Show Gist options
  • Save AviDuda/6a7d05781c7874225495 to your computer and use it in GitHub Desktop.
Save AviDuda/6a7d05781c7874225495 to your computer and use it in GitHub Desktop.
Skip Steam linkfilter
// ==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