Image Hack

replace all html elements that have no children with an image

O que é Image Hack?

Image Hack é uma extensão do Chrome desenvolvida por czachbenton, e sua principal característica é "replace all html elements that have no children with an image".

Baixar o arquivo CRX da Extensão Image Hack

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

                        Simple extension that will give you the option to replace all html elements with an image of your choice. Just for fun!                    

Informações Básicas da Extensão

Nome Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
URL Oficial https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
Descrição replace all html elements that have no children with an image
Tamanho do Arquivo 6.35 KB
Contagem de Instalações 19
Versão Atual 0.1
Última Atualização 2017-08-09
Data de Publicação 2017-08-09
Desenvolvedor czachbenton
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image Hack",
    "description": "replace all html elements that have no children with an image",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}