Chat GPT Cyber/Matrix style

Style overlay for Chat GPT

Что такое Chat GPT Cyber/Matrix style?

Chat GPT Cyber/Matrix style - это расширение Chrome, разработанное yevgeni.kabishcher, и его основная функция - "Style overlay for Chat GPT".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Chat GPT Cyber/Matrix style

Скачайте файлы расширений Chat GPT Cyber/Matrix style в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Want more from your chat experience with Chat GPT?

This extension will allow you to have a unique experience with the style overlay you want.
No worries, you can easily switch between the styles and bring back the original.
No information is being used or sent to anyone, it's just a style overlay.

Version 0.2:
* Enable/Disable matrix style

Developer: Yevgeni Kabisher                    

Основная информация о расширении

Название Chat GPT Cyber/Matrix style Chat GPT Cyber/Matrix style
ID phbmbagiakliejkkhmconlehoinjeenm
Официальный URL https://chromewebstore.google.com/detail/chat-gpt-cybermatrix-styl/phbmbagiakliejkkhmconlehoinjeenm
Описание Style overlay for Chat GPT
Размер файла 12.03 KB
Количество установок 659
Текущая Версия 0.2
Последнее Обновление 2023-01-01
Дата публикации 2022-12-26
Рейтинг 4.20/5 Всего 5 оценок
Разработчик yevgeni.kabishcher
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chat GPT Cyber\/Matrix style",
    "description": "Style overlay for Chat GPT",
    "version": "0.2",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "matrix.css"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "stylescript.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        },
        {
            "js": [
                "popup.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}