Image Hider

Chrome extension to hide all images by default and show images again with click of icon.

Image Hider क्या है?

Image Hider Alex Mason द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension to hide all images by default and show images again with click of icon."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Image Hider एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Hides images on a website, shows images temporarily on hover.
Shows images again by clicking the extension icon.

Hide/Show preference works on a per-domain basis, meaning you can have one website hide images and another show them.

Preference is saved automatically using HTML5 LocalStorage.

Updated 12/07/2015 -- Now you can hide background images by toggling a setting (right click on the extension icon to find the setting). Note that this applies to all websites when toggled and may cause unwanted effects (ex: may hide button icons).

Updated again to fix default hide status.


This is an open source project under the MIT license.

Note: it does not currently work on videos, or other media.                    

एक्सटेंशन की मूल जानकारी

नाम Image Hider Image Hider
ID fdjghmbmljbhojdgegmhhbkhgoacgdcb
आधिकारिक URL https://chromewebstore.google.com/detail/image-hider/fdjghmbmljbhojdgegmhhbkhgoacgdcb
विवरण Chrome extension to hide all images by default and show images again with click of icon.
फ़ाइल का आकार 1.53 MB
स्थापना संख्या 1,223
वर्तमान संस्करण 0.2.8
अंतिम अपडेट 2015-12-08
प्रकाशन तिथि 2015-12-08
रेटिंग 4.19/5 कुल 27 रेटिंग्स
डेवलपर Alex Mason
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://alexmason81.github.io/ChromeImgHider
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image Hider",
    "version": "0.2.8",
    "description": "Chrome extension to hide all images by default and show images again with click of icon.",
    "author": "Alex Mason",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/image-hider\/fdjghmbmljbhojdgegmhhbkhgoacgdcb",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "style-hide.css"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Image Hider",
        "default_icon": "icon.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ]
}