How to Fix "You are leaving Steam" filter

Discussion in 'Off-Topic' started by Val, Aug 5, 2014.

  1. Val

    Val Well Liked Thrall

    Messages:
    1,316
    Likes Received:
    1,951
    Trophy Points:
    113
    Ætt (Clan):
    Huscarls
    This will completely REMOVE the phishing Filter - it will redirect you directly to the Links you click. I think its pretty damn annoying to always click "Continue to the Page" for EVERY damn link i click via steam :<

    First you need something that allows custom scripts:

    Chrome Tampermonkey: Download
    Firefox Greasemonkey: Download

    Script to get directly to the Page it tries to block:
    https://greasyfork.org/scripts/3247-steam-linkfilter-redirector-linkredirector

    // ==UserScript==
    // @name Steam Linkfilter Redirector (/linkredirector/)
    // @namespace http://mrmcpowned.com/
    // @version 0.2
    // @description Redirects links filtered by steam
    // @match https://steamcommunity.com/linkfilter/*
    // @copyright 2014, Mr McPowned
    // @run-at document-start
    // ==/UserScript==

    //JS to get a URL's params. http://stackoverflow.com/questions/901115/how-can-i-get-query-string-values-in-javascript
    getParameterByName = function(name) {
    name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
    var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
    results = regex.exec(location.search);
    return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, ""));
    }

    var filteredLink = getParameterByName('url');

    window.location = filteredLink;
     
    Last edited: Aug 5, 2014
    Trevnor and Dihm like this.
  2. Dihm

    Dihm Speaker of the Word Staff Member Gothi SC Thane

    Messages:
    23,379
    Likes Received:
    13,460
    Trophy Points:
    113
    Location:
    Misery
    Yeah, it has gotten fucking annoying