Fast Translator

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

Cos'è Fast Translator?

Fast Translator è un'estensione di Chrome sviluppata da Coderlife, e la sua funzione principale è "Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Fast Translator

Scarica i file di estensione Fast Translator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Fast Translator Fast Translator
ID bjheadhaeajgaajiifmmjcljcdiecpng
URL Ufficiale https://chromewebstore.google.com/detail/fast-translator/bjheadhaeajgaajiifmmjcljcdiecpng
Descrizione Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.
Dimensione del File 10.81 MB
Conteggio Installazioni 36
Versione Corrente 1.2.1
Ultimo Aggiornamento 2023-06-04
Data di Pubblicazione 2023-04-18
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Coderlife
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://wenus.pixocial.com/h5/projects/5dfa0b7f333347b98384b97dd660ea77
Lingue Supportate 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\/"
    ]
}