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
官方網址 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"
            ]
        }
    ]
}