Copy from Image (OCR)

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

O que é Copy from Image (OCR)?

Copy from Image (OCR) é uma extensão do Chrome desenvolvida por Dusan Stanojevic, e sua principal característica é "Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Copy from Image (OCR)

Baixe arquivos de extensão Copy from Image (OCR) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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

Informações Básicas da Extensão

Nome Copy from Image (OCR) Copy from Image (OCR)
ID kghlkhjinfkgjcicbelkhikebgdlpnee
URL Oficial https://chrome.google.com/webstore/detail/copy-from-image-ocr/kghlkhjinfkgjcicbelkhikebgdlpnee
Descrição Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!
Tamanho do Arquivo 29.99 KB
Contagem de Instalações 1,337
Versão Atual 1.1
Última Atualização 2021-07-22
Data de Publicação 2021-07-15
Classificação 2.77/5 Total de 13 Avaliações
Desenvolvedor Dusan Stanojevic
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}