Skip Steam Link Filter

enter something useful

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

  1. // ==UserScript==
  2. // @name Skip Steam Link Filter
  3. // @namespace http://us.tmg-clan.com/
  4. // @author Roelof Roos
  5. // @version 1.0
  6. // @description enter something useful
  7. // @match https://steamcommunity.com/linkfilter/*
  8. // @copyright 2014+, Roelof Roos
  9. // ==/UserScript==
  10.  
  11. (function(){
  12. var WindowLocation = window.location.href;
  13. var term = "?url=";
  14. var endURL = WindowLocation.substring(WindowLocation.indexOf(term) + term.length);
  15. window.location.replace( endURL );
  16. })();