Steam Leaving Linkfilter Skipper

Skip the nagging message about leaving steam

当前为 2018-07-09 提交的版本,查看 最新版本

// ==UserScript==
// @name         Steam Leaving Linkfilter Skipper
// @namespace    -
// @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];
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址