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
公式URL 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
Eメール [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"
    ]
}