Screenshot OCR

Screenshot and OCR for chrome plugin

什么是Screenshot OCR?

Screenshot OCR是由chen.zou1128开发的Chrome扩展程序,该扩展的主要功能是“Screenshot and OCR for chrome plugin”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Screenshot OCR扩展crx文件

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

扩展使用说明

                        Custom intercept the area you want for OCR content extraction                    

扩展基本信息

名称 Screenshot OCR Screenshot OCR
ID dplahamlefobblocfhnigfnfkalamnce
官方URL https://chromewebstore.google.com/detail/screenshot-ocr/dplahamlefobblocfhnigfnfkalamnce
简介 Screenshot and OCR for chrome plugin
文件大小 385 KB
安装次数 215
当前版本 1.1
更新时间 2023-03-20
上架时间 2023-03-14
评分 5.00/5 共1次评分
开发者 chen.zou1128
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Screenshot OCR",
    "description": "Screenshot and OCR for chrome plugin",
    "version": "1.1",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/inject.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "activeTab",
        "storage",
        "windows",
        "contextMenus"
    ]
}