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.

当前为 2014-07-31 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @id linkfilter-bypass
  3. // @name Bypass Steam Link Filter
  4. // @version 1.0.1
  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/*
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. var prefix;
  13. prefix = "https://steamcommunity.com/linkfilter/";
  14.  
  15. window.location.replace(window.location.toString().substr(prefix.length));