Img Hidden

This extension hides annoying backgrounds and images.

Img Hidden क्या है?

Img Hidden cammann.tom द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension hides annoying backgrounds and images."।

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

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

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

                        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/                    

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

नाम Img Hidden Img Hidden
ID fgncohcbpbbljbookdpjfeigbjkgpfeb
आधिकारिक URL https://chrome.google.com/webstore/detail/img-hidden/fgncohcbpbbljbookdpjfeigbjkgpfeb
विवरण This extension hides annoying backgrounds and images.
फ़ाइल का आकार 87.39 KB
स्थापना संख्या 26
वर्तमान संस्करण 0.6
अंतिम अपडेट 2014-03-06
प्रकाशन तिथि 2014-03-06
रेटिंग 4.67/5 कुल 3 रेटिंग्स
डेवलपर cammann.tom
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://takac.github.io/chrome-img-hidden/
समर्थित भाषाएँ 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"
            ]
        }
    ]
}