Fast Translator

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

Co je Fast Translator?

Fast Translator je rozšíření Chrome vyvinuté Coderlife, a jeho hlavní funkcí je „Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Fast Translator

Stáhněte si soubory rozšíření Fast Translator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Fast Translator Fast Translator
ID bjheadhaeajgaajiifmmjcljcdiecpng
Oficiální URL https://chromewebstore.google.com/detail/fast-translator/bjheadhaeajgaajiifmmjcljcdiecpng
Popis Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.
Velikost souboru 10.81 MB
Počet instalací 36
Aktuální Verze 1.2.1
Poslední Aktualizace 2023-06-04
Datum Vydání 2023-04-18
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Coderlife
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://wenus.pixocial.com/h5/projects/5dfa0b7f333347b98384b97dd660ea77
Podporované Jazyky 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\/"
    ]
}