A-SOUL r/place 2022 Protector

Protect A-SOUL in r/place!

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         A-SOUL r/place 2022 Protector
// @namespace    http://tampermonkey.net/
// @version      0.10
// @description  Protect A-SOUL in r/place!
// @author       You
// @match        https://hot-potato.reddit.com/embed*
// @match        https://www.reddit.com/r/place/
// @icon         https://external-content.duckduckgo.com/ip3/www.reddit.com.ico
// @grant        none
// @license      AGPL
// ==/UserScript==

if (window.top !== window.self) {
  window.addEventListener('load', () => {
    function createMask() {
      const img = document.createElement('img');
      img.src = 'https://openbayes-public.cn-bj.ufileos.com/asoul-place-v10.png';
      img.style = 'position: absolute; top: 0; left: 0; width: 2000px; height: 2000px; image-rendering: pixelated;';
      console.log('A-SOUL r/place 2022 Protector', img);
      return img;
    };

    document.getElementsByTagName('mona-lisa-embed')[0].shadowRoot.children[0].getElementsByTagName('mona-lisa-canvas')[0].shadowRoot.children[0].appendChild(createMask())
  }, false);
}