Image Hack

replace all html elements that have no children with an image

Cos'è Image Hack?

Image Hack è un'estensione di Chrome sviluppata da czachbenton, e la sua funzione principale è "replace all html elements that have no children with an image".

Scarica il file CRX dell'estensione Image Hack

Scarica i file di estensione Image Hack in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
URL Ufficiale https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
Descrizione replace all html elements that have no children with an image
Dimensione del File 6.35 KB
Conteggio Installazioni 19
Versione Corrente 0.1
Ultimo Aggiornamento 2017-08-09
Data di Pubblicazione 2017-08-09
Sviluppatore czachbenton
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}