Image Hack

replace all html elements that have no children with an image

¿Qué es Image Hack?

Image Hack es una extensión de Chrome desarrollada por czachbenton, y su función principal es "replace all html elements that have no children with an image".

Descargar Archivo CRX de la Extensión Image Hack

Descarga archivos de extensión Image Hack 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

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

Información Básica de la Extensión

Nombre Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
URL Oficial https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
Descripción replace all html elements that have no children with an image
Tamaño del Archivo 6.35 KB
Cantidad de Instalaciones 19
Versión Actual 0.1
Última Actualización 2017-08-09
Fecha de Publicación 2017-08-09
Desarrollador czachbenton
Tipo de Pago free
Idiomas Soportados 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"
        ]
    }
}