Image Hack

replace all html elements that have no children with an image

Co je Image Hack?

Image Hack je rozšíření Chrome vyvinuté czachbenton, a jeho hlavní funkcí je „replace all html elements that have no children with an image“.

Stáhnout soubor CRX rozšíření Image Hack

Stáhněte si soubory rozšíření Image Hack ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
Oficiální URL https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
Popis replace all html elements that have no children with an image
Velikost souboru 6.35 KB
Počet instalací 19
Aktuální Verze 0.1
Poslední Aktualizace 2017-08-09
Datum Vydání 2017-08-09
Vývojář czachbenton
Typ Platby free
Podporované Jazyky 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"
        ]
    }
}