ImageToText

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

什麼是ImageToText?

ImageToText是由Pedro Henrique Santos Sousa開發的Chrome擴展程式,該擴展的主要功能是“Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.”。

擴展截圖

screenshot
screenshot

下載ImageToText擴展crx文件

下載ImageToText擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 ImageToText ImageToText
ID ojmelblegakdgcjacaclnlgdmifgppdb
官方網址 https://chromewebstore.google.com/detail/imagetotext/ojmelblegakdgcjacaclnlgdmifgppdb
簡介 Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.
檔案大小 34.94 KB
安裝次數 1,340
目前版本 0.0.1
更新時間 2020-05-13
上架時間 2020-05-12
評分 1.00/5 共 2 次評分
開發者 Pedro Henrique Santos Sousa
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    ]
}