ImageToText

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

Was ist ImageToText?

ImageToText ist eine Chrome-Erweiterung, die von Pedro Henrique Santos Sousa entwickelt wurde, und ihr Hauptmerkmal ist "Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.".

Erweiterungsscreenshots

screenshot
screenshot

ImageToText-Erweiterungs-CRX-Datei herunterladen

Laden Sie ImageToText-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ImageToText ImageToText
ID ojmelblegakdgcjacaclnlgdmifgppdb
Offizielle URL https://chromewebstore.google.com/detail/imagetotext/ojmelblegakdgcjacaclnlgdmifgppdb
Beschreibung Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.
Dateigröße 34.94 KB
Installationsanzahl 1,340
Aktuelle Version 0.0.1
Letztes Update 2020-05-13
Veröffentlichungsdatum 2020-05-12
Bewertung 1.00/5 Insgesamt 2 Bewertungen
Entwickler Pedro Henrique Santos Sousa
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}