OCR Scanner

An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…

什么是OCR Scanner?

OCR Scanner是由vncat开发的Chrome扩展程序,该扩展的主要功能是“An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…”。

扩展截图

screenshot
screenshot
screenshot

下载OCR Scanner扩展crx文件

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

扩展使用说明

                        An optical character recognition (OCR) extension to extract and translate text from snapshot.

This extension can be used as a translation tool when reading protected pdf files on Chrome.

This extension adds a button to your browser toolbar. After user clicks on the button and select a region, the extension captures the snapshot from the region, recognize text inside this region, and translate it to the user's preferred language.                    

扩展基本信息

名称 OCR Scanner OCR Scanner
ID icpcaonhnofngeapallehocmhbillkpg
官方URL https://chrome.google.com/webstore/detail/ocr-scanner/icpcaonhnofngeapallehocmhbillkpg
简介 An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…
文件大小 893 KB
安装次数 5,737
当前版本 0.0.4
更新时间 2022-02-13
上架时间 2021-05-31
评分 3.41/5 共34次评分
开发者 vncat
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://vncatdev.web.app/extensions/privacy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OCR Scanner",
    "version": "0.0.4",
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "identity",
        "identity.email"
    ],
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "css": [
                "contentscript.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Click me to extract and translate text",
        "default_icon": {
            "16": "assets\/icon16.png",
            "32": "assets\/icon32.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        }
    }
}