Greasy Fork is available in English.

Steam linkfilter bypass

Automatically bypasses the steam linkfilter.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name          Steam linkfilter bypass
// @namespace     http://www.mattjeanes.com/
// @description   Automatically bypasses the steam linkfilter.
// @include       http*://steamcommunity.com/linkfilter/?url=*
// @run-at        document-start
// @version 0.0.1.20140723101100
// ==/UserScript==

var str = window.location.href
var search = "?url="
window.location.replace(str.substr(str.indexOf(search)+search.length))