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"
            ]
        }
    ]
}