Greasy Fork is available in English.
Обход подтверждения перехода по ссылке в форуме Steam
// ==UserScript== // @name Обход linkfilter в Steam // @namespace bypass_steam_linkfilter // @version 1.1 // @description Обход подтверждения перехода по ссылке в форуме Steam // @author AlexS#### // @match https://store.steampowered.com/* // @match https://steamcommunity.com/* // @grant none // ==/UserScript== (function() { let links = document.getElementsByClassName(`${(document.location.href.includes('store')) ? 'linkbar' : 'bb_link'}`); for (let link of links) { if (link.href.includes('linkfilter')) link.href = link.href.split('?url=').pop(); } })();