ImageToText

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

Co je ImageToText?

ImageToText je rozšíření Chrome vyvinuté Pedro Henrique Santos Sousa, a jeho hlavní funkcí je „Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření ImageToText

Stáhněte si soubory rozšíření ImageToText ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název ImageToText ImageToText
ID ojmelblegakdgcjacaclnlgdmifgppdb
Oficiální URL https://chromewebstore.google.com/detail/imagetotext/ojmelblegakdgcjacaclnlgdmifgppdb
Popis Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.
Velikost souboru 34.94 KB
Počet instalací 1,340
Aktuální Verze 0.0.1
Poslední Aktualizace 2020-05-13
Datum Vydání 2020-05-12
Hodnocení 1.00/5 Celkem 2 Hodnocení
Vývojář Pedro Henrique Santos Sousa
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}