Copy from Image (OCR)

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

Copy from Image (OCR) là gì?

Copy from Image (OCR) là một tiện ích mở rộng Chrome được phát triển bởi Dusan Stanojevic, và tính năng chính của nó là "Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Copy from Image (OCR)

Tải xuống các tệp mở rộng Copy from Image (OCR) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Copy from Image (OCR) Copy from Image (OCR)
ID kghlkhjinfkgjcicbelkhikebgdlpnee
URL Chính Thức https://chrome.google.com/webstore/detail/copy-from-image-ocr/kghlkhjinfkgjcicbelkhikebgdlpnee
Mô tả Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!
Kích Thước Tệp 29.99 KB
Số Lần Cài Đặt 1,337
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2021-07-22
Ngày Phát Hành 2021-07-15
Đánh Giá 2.77/5 Tổng số 13 Đánh Giá
Nhà Phát Triển Dusan Stanojevic
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}