Translate Scanner

This extension is made by Salure for AFAS translate purposes

Was ist Translate Scanner?

Translate Scanner ist eine Chrome-Erweiterung, die von Salure ICT entwickelt wurde, und ihr Hauptmerkmal ist "This extension is made by Salure for AFAS translate purposes".

Erweiterungsscreenshots

screenshot

Translate Scanner-Erweiterungs-CRX-Datei herunterladen

Laden Sie Translate Scanner-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Translate Scanner Translate Scanner
ID jpacphhdikilnebipcihgigdcoagcpei
Offizielle URL https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei
Beschreibung This extension is made by Salure for AFAS translate purposes
Dateigröße 461 KB
Installationsanzahl 37
Aktuelle Version 2.1.2
Letztes Update 2023-07-18
Veröffentlichungsdatum 2023-03-19
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Salure ICT
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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": []
}