image-to-text

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

¿Qué es image-to-text?

image-to-text es una extensión de Chrome desarrollada por marwan.sdeek.web, y su función principal es "An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión image-to-text

Descarga archivos de extensión image-to-text en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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)                    

Información Básica de la Extensión

Nombre image-to-text image-to-text
ID kheogcfapledldcmebojknkelnhpjlgd
URL Oficial https://chrome.google.com/webstore/detail/image-to-text/kheogcfapledldcmebojknkelnhpjlgd
Descripción An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.
Tamaño del Archivo 11.63 MB
Cantidad de Instalaciones 1,000
Versión Actual 0.0.1
Última Actualización 2020-06-01
Fecha de Publicación 2020-06-01
Calificación 1.00/5 Total de 4 Calificaciones
Desarrollador marwan.sdeek.web
Tipo de Pago free
Idiomas Soportados 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"
        ]
    }
}