Bypass Steam Link Filter

If you found this userscript, I expect you understand what this is for. It skips the Steam linkfilter and goes straight where you actually wanted, before the page even finishes loading. Nothing more, nothing less.

  1. // ==UserScript==
  2. // @id linkfilter-bypass
  3. // @name Bypass Steam Link Filter
  4. // @version 1.0.4
  5. // @namespace
  6. // @author Andrea Faulds <ajf@ajf.me>
  7. // @description If you found this userscript, I expect you understand what this is for. It skips the Steam linkfilter and goes straight where you actually wanted, before the page even finishes loading. Nothing more, nothing less.
  8. // @include https://steamcommunity.com/linkfilter/?url=*
  9. // @run-at document-start
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. var prefix;
  14. prefix = "https://steamcommunity.com/linkfilter/?url=";
  15.  
  16. window.location.replace(window.location.toString().substr(prefix.length));