image-to-text

An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.

Cos'è image-to-text?

image-to-text è un'estensione di Chrome sviluppata da marwan.sdeek.web, e la sua funzione principale è "An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione image-to-text

Scarica i file di estensione image-to-text in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Extract text from selected areas in web page, image, video or youtube.

image-to-text works just by selecting area need to extract text from.

image-to-text allows you to copy text from:
    - Web page contains text as an image or inside a video.
    - opened image in a tab
    - opened video in a tab

image-to-text also allows you to extract links.

image-to-text works offline. (That's why it's almost 12MB to include all needed files)                    

Informazioni di Base sull'Estensione

Nome image-to-text image-to-text
ID kheogcfapledldcmebojknkelnhpjlgd
URL Ufficiale https://chrome.google.com/webstore/detail/image-to-text/kheogcfapledldcmebojknkelnhpjlgd
Descrizione An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.
Dimensione del File 11.63 MB
Conteggio Installazioni 1,000
Versione Corrente 0.0.1
Ultimo Aggiornamento 2020-06-01
Data di Pubblicazione 2020-06-01
Valutazione 1.00/5 Totale 4 Valutazioni
Sviluppatore marwan.sdeek.web
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "image-to-text",
    "description": "An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab. ",
    "version": "0.0.1",
    "author": "MarwanSdeek ",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/crop_48.png",
        "128": "icons\/crop_128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/inactive.png"
    },
    "background": {
        "scripts": [
            "tesseract.min.js",
            "background.js"
        ]
    }
}