ImageToText

Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.

ImageToText là gì?

ImageToText là một tiện ích mở rộng Chrome được phát triển bởi Pedro Henrique Santos Sousa, và tính năng chính của nó là "Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.".

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

screenshot
screenshot

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

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

                        This extension allows you to copy text from any image on the internet, just like you do with normal text content. Simplicity, that is the goal with this application, right click the image, "copy image text" and that is it... you are ready to use and paste the text you saw in that particular image. 

It is useful for informational, ludicative, and code blocks images. Now you don't have to rewrite everything, use this extension and the problem is solved.

To be able to process the image, this extension uses OCR.Space API.                    

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

Tên ImageToText ImageToText
ID ojmelblegakdgcjacaclnlgdmifgppdb
URL Chính Thức https://chromewebstore.google.com/detail/imagetotext/ojmelblegakdgcjacaclnlgdmifgppdb
Mô tả Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.
Kích Thước Tệp 34.94 KB
Số Lần Cài Đặt 1,340
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-05-13
Ngày Phát Hành 2020-05-12
Đánh Giá 1.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Pedro Henrique Santos Sousa
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",
    "manifest_version": 2,
    "name": "ImageToText",
    "description": "Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "functions.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon_tool_bar.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "notifications"
    ]
}