Skip Steam Link filter

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

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

// ==UserScript==
// @name        Skip Steam Link filter
// @description Annoying but necessary, except for people that know their stuff.
// @include     *://steamcommunity.com/*
// @namespace   https://greasyfork.org/users/4813
// @version     1
// @grant       none
// ==/UserScript==

for (link of document.querySelectorAll("a[href^='https://steamcommunity.com/linkfilter/']"))
  link.href = link.href.split('?')[1].split('&')[0].split('url=')[1];