Steam – How to deactivate the steam url filter

steam

If I open a link through the steam chat fenster a what I call URL-Filter appears. It notice you that you are leaving the offical steam sites.

I really want to remove that. I know myself when I leave steam and I also know how to recognize phishing sites.

I added here a image of the site I mean:

Example

How can I remove that screen? Keep in mind that I do not really want to install any software, plugins or other strange tools to remove that!

Are there several solutions?

Best Answer

Without any software or plugins, it is not possible to circumvent this. Steam does not provide any option to do so.

However, you can use this Grease Monkey Script to bypass it:

// ==UserScript==
// @name       Steam Linkfilter Bypass
// @version    0.1
// @description  Bypasses the steam link filter
// @match      https://steamcommunity.com/linkfilter/*
// @run-at document-start
// ==/UserScript==

var URL = document.URL;
var str = URL.split("url=");
window.location = str[1];  

Greasemonkey is an addon for Firefox, that lets you modify the contents of any webpage with the help of Javascript. On Chrome, it is called TamperMonkey and maintained by a different developer.