Agnai pics

Makes stuff happen, watch the video.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Agnai pics
// @namespace   Violentmonkey Scripts
// @match       https://agnai.chat/*
// @grant       none
// @version     0.1, 23/12/2023
// @author      -
// @description Makes stuff happen, watch the video.
// @icon        https://agnai.chat/favicon.ico
// @license     CC BY-NC-SA
// ==/UserScript==

'use strict';

// Process AI reply

function ProcessReply (reply) {
  if (reply?.querySelector('div>div>div[class="break-words"]>span[data-bot-avatar="true"]>div>img')?.src) {
  if(!reply.getAttribute('checked')) {
    let thing = reply.querySelector('div>div>div[class="break-words"]');
    let oldpic = thing.querySelector('span[data-bot-avatar="true"]>div>img');
    let newpic = thing?.querySelector('div>p>p>code');
    if (newpic) {
      oldpic.src = newpic.textContent;
      newpic.remove();
    } else {
      console.log('Where new pic?');
    };
    reply.setAttribute('checked', 'true');
  };
  };
};

// Process all AI replies existing on page load

function ProcessOnLoad () {
  let Chat = document.getElementById("chat-messages");
  let AllReplies = Chat.querySelectorAll('div[data-sender="bot"]');
  AllReplies.forEach(ProcessReply);
};

// Observe shit

const RootObserver = new MutationObserver(function () {
  if (document.getElementById("chat-messages")) {
    ProcessOnLoad ();
  }
});
RootObserver.observe(document.getElementById("root"), {childList: true, subtree: true});