Image Hack

replace all html elements that have no children with an image

Vad är Image Hack?

Image Hack är en Chrome-tillägg utvecklad av czachbenton, och dess huvudfunktion är "replace all html elements that have no children with an image".

Ladda ner Image Hack-förlängningens CRX-fil

Ladda ner Image Hack-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
Officiell webbadress https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
Beskrivning replace all html elements that have no children with an image
Filstorlek 6.35 KB
Antal Installationer 19
Aktuell Version 0.1
Senast Uppdaterad 2017-08-09
Publiceringsdatum 2017-08-09
Utvecklare czachbenton
Betalningssätt free
Stödda Språk 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"
        ]
    }
}