Text to Image

This extension replaces text urls that link to images with the actual images inline.

O que é Text to Image?

Text to Image é uma extensão do Chrome desenvolvida por https://www.resolutedreamer.com, e sua principal característica é "This extension replaces text urls that link to images with the actual images inline.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Text to Image

Baixe arquivos de extensão Text to Image 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

                        Version 1.1.1: Fixed bug where all text in an element would get overwritten instead of only the url for the image. Added a line break before the image for readability. Removed debug messages from console.

Version 1.0: Basic functionality                    

Informações Básicas da Extensão

Nome Text to Image Text to Image
ID lpjgbeojljepdicbkcblehdglogbceck
URL Oficial https://chromewebstore.google.com/detail/text-to-image/lpjgbeojljepdicbkcblehdglogbceck
Descrição This extension replaces text urls that link to images with the actual images inline.
Tamanho do Arquivo 3.75 KB
Contagem de Instalações 40
Versão Atual 1.1.1
Última Atualização 2016-08-25
Data de Publicação 2016-08-25
Classificação 4.00/5 Total de 2 Avaliações
Desenvolvedor https://www.resolutedreamer.com
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": "Text to Image",
    "description": "This extension replaces text urls that link to images with the actual images inline.",
    "version": "1.1.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}