Image Hack

replace all html elements that have no children with an image

Wat is Image Hack?

Image Hack is een Chrome-extensie ontwikkeld door czachbenton, en de belangrijkste functie is "replace all html elements that have no children with an image".

Download het CRX-bestand van de extensie Image Hack

Download Image Hack-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
Officiële URL https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
Beschrijving replace all html elements that have no children with an image
Bestandsgrootte 6.35 KB
Aantal Installaties 19
Huidige Versie 0.1
Laatst Bijgewerkt 2017-08-09
Publicatiedatum 2017-08-09
Ontwikkelaar czachbenton
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}