OCRit

Capture the page and receive text by OCR

什么是OCRit?

OCRit是由OCRitApp开发的Chrome扩展程序,该扩展的主要功能是“Capture the page and receive text by OCR”。

下载OCRit扩展crx文件

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

扩展使用说明

                        ** Currently in BETA**

Just click on the icon, drag to select the part of the page you want recognized, and receive a copy-able version of the text within seconds!

* Currently supports English only.                    

扩展基本信息

名称 OCRit OCRit
ID ggfngjhbdkiidblbnepmmfhnjgmecgmn
官方URL https://chrome.google.com/webstore/detail/ocrit/ggfngjhbdkiidblbnepmmfhnjgmecgmn
简介 Capture the page and receive text by OCR
文件大小 190 KB
安装次数 125
当前版本 1.0.1
更新时间 2015-05-16
上架时间 2015-05-16
评分 3.67/5 共3次评分
开发者 OCRitApp
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OCRit",
    "description": "Capture the page and receive text by OCR",
    "version": "1.0.1",
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "browser_action": {
        "default_title": "OCRit",
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "capture_cs.js",
                "jquery-1.11.3.min.js",
                "html2canvas.js"
            ]
        }
    ]
}