Translate Scanner

This extension is made by Salure for AFAS translate purposes

Cos'è Translate Scanner?

Translate Scanner è un'estensione di Chrome sviluppata da Salure ICT, e la sua funzione principale è "This extension is made by Salure for AFAS translate purposes".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Translate Scanner

Scarica i file di estensione Translate Scanner 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

                        The extension aims to simplify the translation process and improve its efficiency by seamlessly fetching text from the active tab's DOM, parsing it, and storing the translated text for later use. Through the utilization of activeTab, tabs, storage, and host permissions, your extension can access the necessary information from websites and present it in a user-friendly format, thus providing a smoother translation experience. Ultimately, the purpose of your extension is to enhance the translation process for users, enabling them to perform translations with ease and convenience.                    

Informazioni di Base sull'Estensione

Nome Translate Scanner Translate Scanner
ID jpacphhdikilnebipcihgigdcoagcpei
URL Ufficiale https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei
Descrizione This extension is made by Salure for AFAS translate purposes
Dimensione del File 461 KB
Conteggio Installazioni 37
Versione Corrente 2.1.2
Ultimo Aggiornamento 2023-07-18
Data di Pubblicazione 2023-03-19
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Salure ICT
Email [email protected]
Tipo di Pagamento free
Lingue Supportate nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Translate Scanner",
    "description": "This extension is made by Salure for AFAS translate purposes",
    "version": "2.1.2",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "index.html",
        "default_title": "Salure Translate"
    },
    "content_security_policy": []
}