Translate Scanner

This extension is made by Salure for AFAS translate purposes

What is Translate Scanner?

Translate Scanner is a Chrome extension developed by Salure ICT, and its main feature is "This extension is made by Salure for AFAS translate purposes".

Extension Screenshots

screenshot

Download Translate Scanner Extension CRX File

Download Translate Scanner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Translate Scanner Translate Scanner
ID jpacphhdikilnebipcihgigdcoagcpei
Official URL https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei
Description This extension is made by Salure for AFAS translate purposes
File Size 461 KB
Installation Count 37
Current Version 2.1.2
Last Updated 2023-07-18
Publish Date 2023-03-19
Rating 5.00/5 Total 1 Ratings
Developer Salure ICT
Email [email protected]
Payment Type free
Supported Languages 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": []
}