r/SteinsPlace overlay

Overlay for the r/SteinsPlace!

As of 2022-04-02. See the latest version.

// ==UserScript==
// @name         r/SteinsPlace overlay
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Overlay for the r/SteinsPlace!
// @author       SandroHc
// @match        https://hot-potato.reddit.com/embed*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @grant        none
// @license      MIT
// ==/UserScript==

const overlay = "https://cdn.discordapp.com/attachments/414085426660507648/959891885118345267/steinsgate-overlay-v1.png";

if (window.top !== window.self) {
    window.addEventListener('load', () => {
        const canvas = document.getElementsByTagName("mona-lisa-embed")[0].shadowRoot.children[0].getElementsByTagName("mona-lisa-canvas")[0].shadowRoot.children[0];
        canvas.appendChild(
            (function () {
                const i = document.createElement("img");
                i.id = "custom-overlay";
                i.src = overlay;
                i.style = "position: absolute;left: 0;top: -3px;image-rendering: pixelated;width: 2000px;height: 1000px;";
                console.log("Placing overlay for:", i.src);
                return i;
            })()
        )
    }, false);
}