r/ place PIEŠIAM GANDRĄ! palieksim bent kiek grožio, o ne pusplikę vėliavą

3 comments
  1. // ==UserScript==

    // u/namer/Baltics Country drawing

    // u/namespacehttp://tampermonkey.net/

    // u/version 1.0

    // u/description try to take over the canvas!

    // u/author Crystalidus – repurposed from other subreddits

    // u/match https://hot-potato.reddit.com/embed*

    // @icon none

    // @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://i.imgur.com/UQat9z1.png”;

    i.style = “position: absolute;left: 0;top: 0;image-rendering: pixelated;width: 2000px;height: 1000px;”;

    console.log(i);

    return i;

    })())

    }, false);

    document.onkeydown = function(e) {

    const art = document.getElementsByTagName(“mona-lisa-embed”)[0].shadowRoot.children[0].getElementsByTagName(“mona-lisa-canvas”)[0].shadowRoot.children[0].getElementsByTagName(“img”)[0];

    if (e.key == “h” && art.style.display) {

    art.style.removeProperty(‘display’);

    } else art.style.display = “none”;

    }

    }

Leave a Reply