Image Hack

replace all html elements that have no children with an image

What is Image Hack?

Image Hack is a Chrome extension developed by czachbenton, and its main feature is "replace all html elements that have no children with an image".

Download Image Hack Extension CRX File

Download Image Hack extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
Official URL https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
Description replace all html elements that have no children with an image
File Size 6.35 KB
Installation Count 19
Current Version 0.1
Last Updated 2017-08-09
Publish Date 2017-08-09
Developer czachbenton
Payment Type free
Supported Languages 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"
        ]
    }
}