Fast Translator

Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.

Что такое Fast Translator?

Fast Translator - это расширение Chrome, разработанное Coderlife, и его основная функция - "Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Fast Translator

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

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

                        Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation, It also includes functions such as Analyze, polish, and summarize.                    

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

Название Fast Translator Fast Translator
ID bjheadhaeajgaajiifmmjcljcdiecpng
Официальный URL https://chromewebstore.google.com/detail/fast-translator/bjheadhaeajgaajiifmmjcljcdiecpng
Описание Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.
Размер файла 10.81 MB
Количество установок 36
Текущая Версия 1.2.1
Последнее Обновление 2023-06-04
Дата публикации 2023-04-18
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Coderlife
Электронная почта qiang071876@gmail.com
Тип оплаты free
URL страницы политики конфиденциальности https://wenus.pixocial.com/h5/projects/5dfa0b7f333347b98384b97dd660ea77
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Fast Translator",
    "description": "Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.",
    "version": "1.2.1",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "js\/content_script\/index.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background\/index.js"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "activeTab"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "options.html"
            ],
            "matches": [
                ""
            ],
            "target": "window"
        }
    ],
    "host_permissions": [
        "https:\/\/*.openai.com\/",
        "https:\/\/*.openai.azure.com\/",
        "https:\/\/translation.googleapis.com\/",
        "https:\/\/athena.appwheel.com\/",
        "https:\/\/v2.lab.pixocial.com\/",
        "https:\/\/accounts.google.com\/"
    ]
}