Last active
September 11, 2021 04:32
-
-
Save guidocella/df3ddde4e94e9758767c345ea720c5ba to your computer and use it in GitHub Desktop.
Greasemonkey Steam link filter remover
This file contains hidden or 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 remover | |
// @namespace https://github.com/guidocella | |
// @description Disable the link filter on steamcommunity links. | |
// @match https://steamcommunity.com/* | |
// @version 1.0 | |
// @author Guido Cella | |
// ==/UserScript== | |
document.querySelectorAll('a[href^="https://steamcommunity.com/linkfilter/?url="]') | |
.forEach(a => a.href = a.href.substring(43)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment