Skip to content

Instantly share code, notes, and snippets.

@SheepCommander
Last active April 3, 2022 10:45
Show Gist options
  • Save SheepCommander/73743451e5ed0b651caa5b632f768d85 to your computer and use it in GitHub Desktop.
Save SheepCommander/73743451e5ed0b651caa5b632f768d85 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Hololive combo
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Spread the love of HOLLOW LIFE
// @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://raw.githubusercontent.com/SheepCommander/HOLOPLACE-TEMPLATE/main/Further%20archives%20to%20our%20stable%20territory.png";
i.style = "position: absolute;left: 0;top: 0;image-rendering: pixelated;width: 2000px;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