Skip the nagging message about leaving steam
当前为
// ==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];
}