Image Hide

This extension hides images by right-clicking and selecting 'Image Hide'.

What is Image Hide?

Image Hide is a Chrome extension developed by rcanady, and its main feature is "This extension hides images by right-clicking and selecting 'Image Hide'.".

Extension Screenshots

screenshot

Download Image Hide Extension CRX File

Download Image Hide 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

                        Hides any unwanted images.

Updated 8/12/2018

- Now supports a wider array of images.                    

Extension Basic Information

Name Image Hide Image Hide
ID fghjkpciajcghipihonlffhbggjeejef
Official URL https://chromewebstore.google.com/detail/image-hide/fghjkpciajcghipihonlffhbggjeejef
Description This extension hides images by right-clicking and selecting 'Image Hide'.
File Size 1.39 MB
Installation Count 263
Current Version 1.1.0
Last Updated 2018-08-12
Publish Date 2018-08-12
Rating 3.83/5 Total 6 Ratings
Developer rcanady
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image Hide",
    "description": "This extension hides images by right-clicking and selecting 'Image Hide'.",
    "version": "1.1.0",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "image-hide.css"
            ],
            "js": [
                "listener.js",
                "jquery-2.1.4.min.js"
            ]
        }
    ]
}