Last active
January 28, 2019 05:11
-
-
Save laymonage/34c99f39751fb21cab3f781cc01dcb7b to your computer and use it in GitHub Desktop.
A tampermonkey/greasemonkey user script to disable link filter on https://steamcommunity.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Steam Link Filter Disabler | |
// @namespace https://steamcommunity.com | |
// @version 0.1 | |
// @description Disable the link filter on steamcommunity links. | |
// @author laymonage | |
// @match https://steamcommunity.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var url = window.location.href; | |
var filter = "https://steamcommunity.com/linkfilter/?url="; | |
if (url.substring(0, filter.length) === filter) { | |
window.location.href = url.substring(filter.length); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment