Skip to content

Instantly share code, notes, and snippets.

@zekesonxx
Last active November 5, 2021 10:04
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zekesonxx/bb2e417952a1504707aa to your computer and use it in GitHub Desktop.
Save zekesonxx/bb2e417952a1504707aa to your computer and use it in GitHub Desktop.
Steam Link Filter Bypasser
// ==UserScript==
// @name Steam Link Filter Bypass
// @author Zeke Sonxx
// @namespace zekesonxx
// @version 0.2
// @description Bypasses the Steam link filter
// @match https://steamcommunity.com/linkfilter/*
// @include https://steamcommunity.com/linkfilter/*
// @copyright 2014, Zeke Sonxx, MIT Licensed
// ==/UserScript==
//Choose your method
//If one doesn't always work, then try the other.
var METHOD = 'a';
if (METHOD === 'a') {
window.location = window.location.search.substr(5);
} else if (METHOD === 'b') {
window.location = document.getElementById('proceedButton').href;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment