Copy from Image (OCR)

Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!

¿Qué es Copy from Image (OCR)?

Copy from Image (OCR) es una extensión de Chrome desarrollada por Dusan Stanojevic, y su función principal es "Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Copy from Image (OCR)

Descarga archivos de extensión Copy from Image (OCR) 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

                        Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!

Simple extension allowing you to take full advantage of modern AI tech to extract the text from any image.

The extension is in V1 and currently supports english as the base language.

When you select a piece of text a green checkmark will show up in the top left corner of the website to indicate the text was successfully extracted and inserted into your clipboard.

If you have any questions or suggestions or run into issues feel free to reach out @ [email protected].

---------------------------------------------------------------

Icons made by Smashicons from www.flaticon.com
Icons made by Freepik from www.flaticon.com

Información Básica de la Extensión

Nombre Copy from Image (OCR) Copy from Image (OCR)
ID kghlkhjinfkgjcicbelkhikebgdlpnee
URL Oficial https://chrome.google.com/webstore/detail/copy-from-image-ocr/kghlkhjinfkgjcicbelkhikebgdlpnee
Descripción Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!
Tamaño del Archivo 29.99 KB
Cantidad de Instalaciones 1,337
Versión Actual 1.1
Última Actualización 2021-07-22
Fecha de Publicación 2021-07-15
Calificación 2.77/5 Total de 13 Calificaciones
Desarrollador Dusan Stanojevic
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy from Image (OCR)",
    "description": "Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "tesseract.min.js",
                "inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        ""
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}