Fast Translator

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

Wat is Fast Translator?

Fast Translator is een Chrome-extensie ontwikkeld door Coderlife, en de belangrijkste functie is "Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Fast Translator

Download Fast Translator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Fast Translator Fast Translator
ID bjheadhaeajgaajiifmmjcljcdiecpng
Officiële URL https://chromewebstore.google.com/detail/fast-translator/bjheadhaeajgaajiifmmjcljcdiecpng
Beschrijving Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.
Bestandsgrootte 10.81 MB
Aantal Installaties 36
Huidige Versie 1.2.1
Laatst Bijgewerkt 2023-06-04
Publicatiedatum 2023-04-18
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Coderlife
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://wenus.pixocial.com/h5/projects/5dfa0b7f333347b98384b97dd660ea77
Ondersteunde Talen 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\/"
    ]
}