Steam Skip External Site Warning

Skips the "x is not an official Steam site." page

// ==UserScript==
// @name         Steam Skip External Site Warning
// @namespace    https://steamcommunity.com
// @version      0.1
// @description  Skips the "x is not an official Steam site." page
// @author       pgsill
// @match        https://steamcommunity.com/linkfilter/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const destinationUrl = window.location.href.split('https://steamcommunity.com/linkfilter/?url=')[1];

    window.location.href = destinationUrl;
})();