image-to-text

An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.

image-to-text là gì?

image-to-text là một tiện ích mở rộng Chrome được phát triển bởi marwan.sdeek.web, và tính năng chính của nó là "An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng image-to-text

Tải xuống các tệp mở rộng image-to-text 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

                        Extract text from selected areas in web page, image, video or youtube.

image-to-text works just by selecting area need to extract text from.

image-to-text allows you to copy text from:
    - Web page contains text as an image or inside a video.
    - opened image in a tab
    - opened video in a tab

image-to-text also allows you to extract links.

image-to-text works offline. (That's why it's almost 12MB to include all needed files)                    

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

Tên image-to-text image-to-text
ID kheogcfapledldcmebojknkelnhpjlgd
URL Chính Thức https://chrome.google.com/webstore/detail/image-to-text/kheogcfapledldcmebojknkelnhpjlgd
Mô tả An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.
Kích Thước Tệp 11.63 MB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-06-01
Ngày Phát Hành 2020-06-01
Đánh Giá 1.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển marwan.sdeek.web
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": "image-to-text",
    "description": "An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab. ",
    "version": "0.0.1",
    "author": "MarwanSdeek ",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/crop_48.png",
        "128": "icons\/crop_128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/inactive.png"
    },
    "background": {
        "scripts": [
            "tesseract.min.js",
            "background.js"
        ]
    }
}