Alem - ChatGPT RTL Extension

Changes the direction of ChatGPT responses to RTL.

Что такое Alem - ChatGPT RTL Extension?

Alem - ChatGPT RTL Extension - это расширение Chrome, разработанное a.zareshahi1377, и его основная функция - "Changes the direction of ChatGPT responses to RTL.".

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

screenshot

Скачать файл CRX расширения Alem - ChatGPT RTL Extension

Скачайте файлы расширений Alem - ChatGPT RTL Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        with this extension you can see ChatGPT RTL answers correctly                    

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

Название Alem - ChatGPT RTL Extension Alem - ChatGPT RTL Extension
ID djlffendllcenogpogdcoljdpodlnhah
Официальный URL https://chromewebstore.google.com/detail/alem-chatgpt-rtl-extensio/djlffendllcenogpogdcoljdpodlnhah
Описание Changes the direction of ChatGPT responses to RTL.
Размер файла 17.41 KB
Количество установок 670
Текущая Версия 1.2
Последнее Обновление 2023-03-29
Дата публикации 2023-03-29
Рейтинг 5.00/5 Всего 3 оценок
Разработчик a.zareshahi1377
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки fa
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Alem - ChatGPT RTL Extension",
    "version": "1.2",
    "description": "Changes the direction of ChatGPT responses to RTL.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "webRequest"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}