PERPLEXITY-FULL-SCREEN

通过 MutationObserver 自动删除 Perplexity.ai 页面中动态加载的image所在的元素,扩大chat所在的元素

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         PERPLEXITY-FULL-SCREEN
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  通过 MutationObserver 自动删除 Perplexity.ai 页面中动态加载的image所在的元素,扩大chat所在的元素
// @author       liuweiqing
// @match        https://www.perplexity.ai/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=perplexity.ai
// @grant        none
// @run-at       document-end
// @license      MIT
// ==/UserScript==

(function () {
  "use strict";

  const observer = new MutationObserver((mutations) => {
    mutations.forEach((mutation) => {
      mutation.addedNodes.forEach((node) => {
        if (node.nodeType === 1) {
          const imageColumn =
            node.querySelector(".col-span-4") ||
            (node.classList && node.classList.contains("col-span-4")
              ? node
              : null);
          const chatElement = document.querySelector(".col-span-8");
          if (imageColumn) {
            imageColumn.remove();
          }
          if (chatElement) {
            chatElement.classList.remove("col-span-8");
            chatElement.classList.add("col-span-12");
          }
        }
      });
    });
  });

  observer.observe(document.body, {
    childList: true,
    subtree: true,
  });
})();