Skip Steam Link Filter

Redirects users beyond the "Are you sure you want to leave Steam" page

  1. // ==UserScript==
  2. // @name Skip Steam Link Filter
  3. // @namespace http://us.tmg-clan.com/
  4. // @author Roelof Roos
  5. // @version 1.1
  6. // @description Redirects users beyond the "Are you sure you want to leave Steam" page
  7. // @match https://steamcommunity.com/linkfilter/*
  8. // @copyright 2014+, Roelof Roos
  9. // ==/UserScript==
  10.  
  11. (function(){
  12. // Get the window location
  13. var WindowLocation = window.location.href;
  14. // For now Steam adds ?url= to the window location, after which the URL of the page we want to go to is put in plain text
  15. var term = "url=";
  16. // Get the full URL of the link we want to go to from the current window location.
  17. var endURL = WindowLocation.substring(WindowLocation.indexOf(term) + term.length);
  18. // Replace, we don't have to go back
  19. window.location.replace( endURL );
  20. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址