Image Download

This extension allows you to download images with one click, directly to your download folder.

Image Download क्या है?

Image Download https://www.xn--fundstcke-im-netz-72b.de द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to download images with one click, directly to your download folder."।

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

screenshot

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

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

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

                        This extension adds a small icon to every picture while hovering over it. When you click on that icon the picture is downloaded directly to your download folder.

You will never be asked again where you want to save the picture.

If you want to get in touch, please join the Google+ Community Image Download. (https://plus.google.com/u/0/communities/109075059138445967727)

Attention: The extension is in an early development state, there are some features to come and not everything is working perfect. If you have any tips or questions don't hesitate to contact us.                    

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

नाम Image Download Image Download
ID pianibmfifkeamgfggpkkanjdcoppgch
आधिकारिक URL https://chromewebstore.google.com/detail/image-download/pianibmfifkeamgfggpkkanjdcoppgch
विवरण This extension allows you to download images with one click, directly to your download folder.
फ़ाइल का आकार 86.52 KB
स्थापना संख्या 3,435
वर्तमान संस्करण 1.4.0
अंतिम अपडेट 2016-02-08
प्रकाशन तिथि 2016-02-08
रेटिंग 3.15/5 कुल 68 रेटिंग्स
डेवलपर https://www.xn--fundstcke-im-netz-72b.de
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image Download",
    "description": "This extension allows you to download images with one click, directly to your download folder.",
    "version": "1.4.0",
    "icons": {
        "128": "image_download_128.png"
    },
    "author": "Kevin B.",
    "permissions": [
        "storage",
        "downloads"
    ],
    "browser_action": {
        "default_icon": "action-on.png"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "jquery.js",
                "content.js",
                "mutation-summary.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "save_64.png",
        "page.css"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}