Image Reader (OCR)

Easily get words out of an image with OCR engine!

Image Reader (OCR) là gì?

Image Reader (OCR) là một tiện ích mở rộng Chrome được phát triển bởi Sevina, và tính năng chính của nó là "Easily get words out of an image with OCR engine!".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Image Reader (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

                        Image Reader (OCR) extension helps you easily get words out of any image. It uses an open-source OCR library called Tesseract. Tesseract.js is an open-source JavaScript library and is made via an Emscripten port of the famous Tesseract OCR Engine written in C and C++. Please visit (https://github.com/naptha/tesseract.js) to get more info.

To work with this addon, simply open the addon's interface and load your image via the file selector (top section). Before using the addon, please make sure to select the appropriate OCR language. Default OCR language is set to English.

Note: this addon uses the "https://github.com/naptha/tessdata/tree/gh-pages/" GitHub repo to fetch language data required for the OCR operation. Language data packs are very large and cannot be included in the addon package.

To report bugs, please fill the bug report form on the extension's homepage (https://mybrowseraddon.com/image-reader.html).                    

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

Tên Image Reader (OCR) Image Reader (OCR)
ID cakcfocedphbadddjpalejbkhflfbhmf
URL Chính Thức https://chromewebstore.google.com/detail/image-reader-ocr/cakcfocedphbadddjpalejbkhflfbhmf
Mô tả Easily get words out of an image with OCR engine!
Kích Thước Tệp 7.51 MB
Số Lần Cài Đặt 31,444
Phiên Bản Hiện Tại 0.1.7
Cập Nhật Lần Cuối 2023-12-07
Ngày Phát Hành 2019-08-27
Đánh Giá 3.85/5 Tổng số 20 Đánh Giá
Nhà Phát Triển Sevina
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://mybrowseraddon.com/image-reader.html
URL Trang Trợ Giúp https://mybrowseraddon.com/image-reader.html
URL Trang Chính Sách Bảo Mật https://mybrowseraddon.com/privacy-policy/developer/sevina.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.7",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Image Reader (OCR)",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/image-reader.html",
    "description": "Easily get words out of an image with OCR engine!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "action": {
        "default_title": "Image Reader (OCR)",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}