Translate Scanner

This extension is made by Salure for AFAS translate purposes

Co to jest Translate Scanner?

Translate Scanner to rozszerzenie Chrome opracowane przez Salure ICT, a jego główną funkcją jest „This extension is made by Salure for AFAS translate purposes”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Translate Scanner

Pobierz pliki rozszerzeń Translate Scanner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Translate Scanner Translate Scanner
ID jpacphhdikilnebipcihgigdcoagcpei
Oficjalny URL https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei
Opis This extension is made by Salure for AFAS translate purposes
Rozmiar pliku 461 KB
Liczba instalacji 37
Aktualna Wersja 2.1.2
Ostatnia Aktualizacja 2023-07-18
Data Publikacji 2023-03-19
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Salure ICT
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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": []
}