Skip to content

Instantly share code, notes, and snippets.

@AdenGames
Created April 4, 2022 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AdenGames/053fc8b71b40ff07c52e76c94b07f387 to your computer and use it in GitHub Desktop.
Save AdenGames/053fc8b71b40ff07c52e76c94b07f387 to your computer and use it in GitHub Desktop.
Fish overlay
// ==UserScript==
// @name r/Place
// @namespace https://www.reddit.com/r/Place/
// @version 1.0.4
// @description Place template script
// @author r/Place
// @match https://hot-potato.reddit.com/embed*
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @grant none
// @license GPL-3.0
// ==/UserScript==
const placeTemplateUrl = "https://cdn.discordapp.com/attachments/721101271162945588/960010270493802506/template.png";
const placeTemplateWidth = "2000px";
const placeTemplateHeight = "1000px";
const placeTemplateX = "0px";
const placeTemplateY = "0px";
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 = placeTemplateUrl;
i.style = "position: absolute;left: "+placeTemplateX+";top: "+placeTemplateY+";image-rendering: pixelated;width: "+placeTemplateWidth+";height: "+placeTemplateHeight+";";
i.id = "template";
console.log(i);
return i;
})());
}, false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment