Skip Link Filter Steam

Skips the link filter on steam

  1. // ==UserScript==
  2. // @name Skip Link Filter Steam
  3. // @namespace s4nji
  4. // @description Skips the link filter on steam
  5. // @include https://steamcommunity.com/linkfilter/?url=*
  6. // @version 1
  7. // @grant none
  8. // @run-at document-start
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. var pat = /\??url=(.+)\&?/i;
  13. var url = window.location.search;
  14.  
  15. window.location = url.match(pat)[1];
  16. })();