ImageToText

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

O que é ImageToText?

ImageToText é uma extensão do Chrome desenvolvida por Pedro Henrique Santos Sousa, e sua principal característica é "Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão ImageToText

Baixe arquivos de extensão ImageToText 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

                        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.                    

Informações Básicas da Extensão

Nome ImageToText ImageToText
ID ojmelblegakdgcjacaclnlgdmifgppdb
URL Oficial https://chromewebstore.google.com/detail/imagetotext/ojmelblegakdgcjacaclnlgdmifgppdb
Descrição Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.
Tamanho do Arquivo 34.94 KB
Contagem de Instalações 1,340
Versão Atual 0.0.1
Última Atualização 2020-05-13
Data de Publicação 2020-05-12
Classificação 1.00/5 Total de 2 Avaliações
Desenvolvedor Pedro Henrique Santos Sousa
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}