Img Hidden

This extension hides annoying backgrounds and images.

What is Img Hidden?

Img Hidden is a Chrome extension developed by cammann.tom, and its main feature is "This extension hides annoying backgrounds and images.".

Download Img Hidden Extension CRX File

Download Img Hidden 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

                        A chrome extension to hide images and backgrounds on a page.

Images/backgrounds can be toggled on and off to allow for a more pleasant reading experience.

Go from clutter to minimalist in a single click.

Source code: https://github.com/takac/chrome-img-hidden/                    

Extension Basic Information

Name Img Hidden Img Hidden
ID fgncohcbpbbljbookdpjfeigbjkgpfeb
Official URL https://chrome.google.com/webstore/detail/img-hidden/fgncohcbpbbljbookdpjfeigbjkgpfeb
Description This extension hides annoying backgrounds and images.
File Size 87.39 KB
Installation Count 26
Current Version 0.6
Last Updated 2014-03-06
Publish Date 2014-03-06
Rating 4.67/5 Total 3 Ratings
Developer cammann.tom
Payment Type free
Extension Website http://takac.github.io/chrome-img-hidden/
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Img Hidden",
    "description": "This extension hides annoying backgrounds and images.",
    "version": "0.6",
    "permissions": [
        "background",
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ]
}