Fran script forsenCD

NaM!

  1. // ==UserScript==
  2. // @name Fran script forsenCD
  3. // @namespace http://tampermonkey.net/
  4. // @version 10.0
  5. // @description NaM!
  6. // @author mopolo
  7. // @match https://hot-potato.reddit.com/embed*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com
  9. // @grant none
  10. // @license MT
  11. // ==/UserScript==
  12. if (window.top !== window.self) {
  13. window.addEventListener('load', () => {
  14. document.getElementsByTagName("mona-lisa-embed")[0].shadowRoot.children[0].getElementsByTagName("mona-lisa-canvas")[0].shadowRoot.children[0].appendChild(
  15. (function () {
  16. const i = document.createElement("img");
  17. i.src = "https://i.imgur.com/Rc2n1Nz.png";
  18. i.style = "position: absolute;left: 0;top: 0;image-rendering: pixelated;width: 2000px;height: 2000px;";
  19. console.log(i);
  20. return i;
  21. })())
  22.  
  23. }, false);
  24.  
  25. }