Fast Translator

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

Was ist Fast Translator?

Fast Translator ist eine Chrome-Erweiterung, die von Coderlife entwickelt wurde, und ihr Hauptmerkmal ist "Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.".

Erweiterungsscreenshots

screenshot
screenshot

Fast Translator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fast Translator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Fast Translator Fast Translator
ID bjheadhaeajgaajiifmmjcljcdiecpng
Offizielle URL https://chromewebstore.google.com/detail/fast-translator/bjheadhaeajgaajiifmmjcljcdiecpng
Beschreibung Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.
Dateigröße 10.81 MB
Installationsanzahl 36
Aktuelle Version 1.2.1
Letztes Update 2023-06-04
Veröffentlichungsdatum 2023-04-18
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Coderlife
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://wenus.pixocial.com/h5/projects/5dfa0b7f333347b98384b97dd660ea77
Unterstützte Sprachen 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\/"
    ]
}