Image Hack

replace all html elements that have no children with an image

Hvad er Image Hack?

Image Hack er en Chrome-udvidelse udviklet af czachbenton, og dens hovedfunktion er "replace all html elements that have no children with an image".

Download Image Hack-udvidelses-CRX-fil

Download Image Hack-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
Officiel URL https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
Beskrivelse replace all html elements that have no children with an image
Filstørrelse 6.35 KB
Antal Installationer 19
Nuværende Version 0.1
Senest Opdateret 2017-08-09
Udgivelsesdato 2017-08-09
Udvikler czachbenton
Betalingsmetode free
Understøttede Sprog 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"
        ]
    }
}