// UserScript // @name /pol/ flags // @namespace http://tampermonkey.net/ // @version 2025-12-12 // @description try to take over the world! // @author You // @match https://soyjak.st/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // /UserScript (function(){ 'user strict'; console.log("fuck all nigggers"); for (let image of document.getElementsByClassName('flag')) { if (image.src == "https://soyjak.st/static/flags/tr.png") { image.src = "https://files.catbox.moe/gbkxft.png"; image.title = "Ottoman Empire"; } } })();