Skip Steam Link filter

Annoying but necessary, except for people that know their stuff.

目前为 2016-09-03 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Skip Steam Link filter
  3. // @description Annoying but necessary, except for people that know their stuff.
  4. // @include *://steamcommunity.com/*
  5. // @namespace https://greasyfork.org/users/4813
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. for (link of document.querySelectorAll("a[href^='https://steamcommunity.com/linkfilter/']"))
  11. link.href = link.href.split('?')[1].split('&')[0].split('url=')[1];