Skip Link Filter Steam

Skips the link filter on steam

目前为 2014-07-11 提交的版本。查看 最新版本

// ==UserScript==
// @name        Skip Link Filter Steam
// @namespace   s4nji
// @description Skips the link filter on steam
// @include     https://steamcommunity.com/linkfilter/?url=*
// @version     1
// @grant       none
// @run-at      document-start
// ==/UserScript==

(function() {
var pat = /\??url=(.+)\&?/i;
var url = window.location.search;

window.location = url.match(pat)[1];
})();