NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Monero taskbar | r/place | Overlay
// @namespace http://tampermonkey.net/
// @version 1.3
// @description try to take over the canvas!
// @author original: oralekin, edit: Bernard
// @match https://hot-potato.reddit.com/embed*
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @grant none
// @updateURL https://openuserjs.org/meta/BernardXMR/Monero_taskbar_rplace_Overlay.meta.js
// @downloadURL https://openuserjs.org/install/BernardXMR/Monero_rplace_Overlay.user.js
// @license MIT
// ==/UserScript==
if (window.top !== window.self) {
window.addEventListener('load', () => {
//maybe add foreach loop here to iterate through multiple images in a list
document.getElementsByTagName("mona-lisa-embed")[0].shadowRoot.children[0].getElementsByTagName("mona-lisa-canvas")[0].shadowRoot.children[0].appendChild(
(function () {
const i = document.createElement("img");
const time = Math.floor(Date.now() / 100000);
// Image Settings
i.style = "position: absolute;";
i.style["image-rendering"] = "pixelated";
// POSITIONING //
i.style.left = "543px"; //X coords 486,1975
i.style.top = "1974px"; //Y coords
i.src = "https://i.imgur.com/tXoHqzS.png";
// MASKING //
i.style["-webkit-mask-image"] = "url(https://i.imgur.com/RRC3qXG.png)"; // mask url
i.style["-webkit-mask-size"] = "1px"; // mask size (1px obviously)
console.log(i);
return i;
})())
}, false);
}