гей мосс

gay moss

// ==UserScript==
// @name гей мосс
// @author лемондемон
// @run-at document-start
// @description gay moss
// @match https://catwar.net/*
// @version 0.0.1.20250407183805
// @namespace https://greasyfork.org/users/1455158
// ==/UserScript==

(function() {
let css = `
     img[src="things/75.png"], li .exchange img[src="/cw3/things/75.png"] {
        content: url('http://d.zaix.ru/Mwgc.gif');
    } 
`;
if (typeof GM_addStyle !== "undefined") {
  GM_addStyle(css);
} else {
  const styleNode = document.createElement("style");
  styleNode.appendChild(document.createTextNode(css));
  (document.querySelector("head") || document.documentElement).appendChild(styleNode);
}
})();