Last active
August 29, 2015 14:04
-
-
Save michaelmob/5cf4cf5041e1175488b7 to your computer and use it in GitHub Desktop.
Instead of clicking "proceed to website" on Steam's link filter, this Userscript automatically redirects you.
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 Steam Link Filter Auto-Continue | |
// @namespace https://steamcommunity.com/linkfilter/ | |
// @description Bypass Steam's Link Filter anti-feature. | |
// @include https://steamcommunity.com/linkfilter/* | |
// @include http://steamcommunity.com/linkfilter/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== | |
var len = document.URL.substr(0, 5) == "https" ? 43 : 42; | |
window.location.href = document.URL.substr(len, document.URL.length - len); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment