Image Download

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

Qu'est-ce que Image Download ?

Image Download est une extension Chrome développée par https://www.xn--fundstcke-im-netz-72b.de, et sa fonction principale est "This extension allows you to download images with one click, directly to your download folder.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Image Download

Téléchargez les fichiers d'extension Image Download au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Image Download Image Download
ID pianibmfifkeamgfggpkkanjdcoppgch
URL Officiel https://chromewebstore.google.com/detail/image-download/pianibmfifkeamgfggpkkanjdcoppgch
Description This extension allows you to download images with one click, directly to your download folder.
Taille du Fichier 86.52 KB
Nombre d'Installations 3,435
Version Actuelle 1.4.0
Dernière Mise à Jour 2016-02-08
Date de Publication 2016-02-08
Évaluation 3.15/5 Total 68 Évaluations
Développeur https://www.xn--fundstcke-im-netz-72b.de
Type de Paiement free
Langues Prises en Charge 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'"
}