// ==UserScript== // @name MonaLisaClan // @namespace http://tampermonkey.net/ // @version 8.0 // @description Keep the canvas beautiful! // @author /u/djdogjuam2 & /u/irate_kalypso // @match https://hot-potato.reddit.com/embed* // @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com // @updateURL https://github.com/Walter-Hulsebos/r-MonaLisaClan/blob/main/alliance_overlay.user.js // @downloadURL https://github.com/Walter-Hulsebos/r-MonaLisaClan/raw/main/alliance_overlay.user.js // @grant none // ==/UserScript== if (window.top !== window.self) { window.addEventListener('load', () => { document.getElementsByTagName("mona-lisa-embed")[0].shadowRoot.children[0].getElementsByTagName("mona-lisa-canvas")[0].shadowRoot.children[0].appendChild( (function () { const i = document.createElement("img"); i.src = "https://raw.githubusercontent.com/Walter-Hulsebos/r-MonaLisaClan/main/MonaLisaDesign.png"; i.style = "position: absolute;left: 0;top: 0;image-rendering: pixelated;width: 2000px;height: 2000px;"; console.log(i); return i; })()) }, false); }