Greasy Fork 还支持 简体中文。

Skip Steam Link filter

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

目前為 2019-04-05 提交的版本,檢視 最新版本

  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 2019.04.05
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. for (var link of document.querySelectorAll(`a[href^='https://steamcommunity.com/linkfilter/']`))
  11. link.href = link.href.split(/\?(.+)/)[1].split('&')[0].split('url=')[1]