Copy from Image (OCR)

Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!

Copy from Image (OCR)とは何ですか?

Copy from Image (OCR)はDusan Stanojevicによって開発されたChromeの拡張機能で、その主な機能は「Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!」です。

拡張機能のスクリーンショット

screenshot

Copy from Image (OCR)拡張機能のCRXファイルをダウンロード

Copy from Image (OCR)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!

Simple extension allowing you to take full advantage of modern AI tech to extract the text from any image.

The extension is in V1 and currently supports english as the base language.

When you select a piece of text a green checkmark will show up in the top left corner of the website to indicate the text was successfully extracted and inserted into your clipboard.

If you have any questions or suggestions or run into issues feel free to reach out @ [email protected].

---------------------------------------------------------------

Icons made by Smashicons from www.flaticon.com
Icons made by Freepik from www.flaticon.com

拡張機能の基本情報

名前 Copy from Image (OCR) Copy from Image (OCR)
ID kghlkhjinfkgjcicbelkhikebgdlpnee
公式URL https://chrome.google.com/webstore/detail/copy-from-image-ocr/kghlkhjinfkgjcicbelkhikebgdlpnee
説明 Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!
ファイルサイズ 29.99 KB
インストール数 1,337
現在のバージョン 1.1
最終更新日 2021-07-22
公開日 2021-07-15
評価 2.77/5 合計 13 レビュー
開発者 Dusan Stanojevic
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy from Image (OCR)",
    "description": "Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "tesseract.min.js",
                "inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        ""
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}