Steam Leaving Linkfilter Skipper

Skip the nagging message about leaving steam

目前為 2018-07-09 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Steam Leaving Linkfilter Skipper
// @namespace    https://greasyfork.org/en/scripts/370160-steam-leaving-linkfilter-skipper
// @version      0.0.1
// @description  Skip the nagging message about leaving steam
// @author       Phlegomatic
// @match        https://steamcommunity.com/*
// @grant        none
// ==/UserScript==

var Catch = "linkfilter"; // look for this
var currentLocation = window.location.href; // get current URL

if (currentLocation.includes(Catch)) {
    var URL = currentLocation.split("?url=");
    window.location.href = URL[1];
}