Created
April 2, 2022 16:08
-
-
Save softyoda/1f1fefe83c5ad616c47fdaac855c034a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name placestart | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description credit to oralekin | |
// @author oralekin | |
// @match https://hot-potato.reddit.com/embed* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com | |
// @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://cdn.discordapp.com/attachments/959525141346406450/959843839714144276/overlay.png" | |
i.style = "position: absolute;left: 0;top: 0;image-rendering: pixelated;width: 1000px;height: 1000px;"; | |
console.log(i); | |
return i; | |
})()) | |
}, false); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment