Image Hack

replace all html elements that have no children with an image

Qu'est-ce que Image Hack ?

Image Hack est une extension Chrome développée par czachbenton, et sa fonction principale est "replace all html elements that have no children with an image".

Télécharger le fichier CRX de l'extension Image Hack

Téléchargez les fichiers d'extension Image Hack au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
URL Officiel https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
Description replace all html elements that have no children with an image
Taille du Fichier 6.35 KB
Nombre d'Installations 19
Version Actuelle 0.1
Dernière Mise à Jour 2017-08-09
Date de Publication 2017-08-09
Développeur czachbenton
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}