Translate Scanner

This extension is made by Salure for AFAS translate purposes

什么是Translate Scanner?

Translate Scanner是由Salure ICT开发的Chrome扩展程序,该扩展的主要功能是“This extension is made by Salure for AFAS translate purposes”。

扩展截图

screenshot

下载Translate Scanner扩展crx文件

下载Translate Scanner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Translate Scanner Translate Scanner
ID jpacphhdikilnebipcihgigdcoagcpei
官方URL https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei
简介 This extension is made by Salure for AFAS translate purposes
文件大小 461 KB
安装次数 37
当前版本 2.1.2
更新时间 2023-07-18
上架时间 2023-03-19
评分 5.00/5 共1次评分
开发者 Salure ICT
电子邮箱 [email protected]
付费类型 free
支持的语言 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": []
}