Download Notifications

This extension adds notifications for downloads, when complete or interrupted

Qu'est-ce que Download Notifications ?

Download Notifications est une extension Chrome développée par André Ferreira, et sa fonction principale est "This extension adds notifications for downloads, when complete or interrupted".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Download Notifications 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 opensource extension adds notification popups for downloads.

It does not disable the download shelf. For that I recommend https://chrome.google.com/webstore/detail/download-notifier/gdekiloeocnfnochnkldpkmllmfiaeke

The code is licensed under GPLV3 and available at
https://github.com/aadfPT/ChromeDownloadNotifications                    

Informations de Base sur l'Extension

Nom Download Notifications Download Notifications
ID eeffjbbdjlmldkkhdjdfaamgdmolpjpp
URL Officiel https://chromewebstore.google.com/detail/download-notifications/eeffjbbdjlmldkkhdjdfaamgdmolpjpp
Description This extension adds notifications for downloads, when complete or interrupted
Taille du Fichier 5.26 KB
Nombre d'Installations 261
Version Actuelle 0.0.0.1
Dernière Mise à Jour 2014-07-19
Date de Publication 2014-07-19
Évaluation 3.00/5 Total 2 Évaluations
Développeur André Ferreira
Type de Paiement free
Site Web de l'Extension https://github.com/aadfPT/ChromeDownloadNotifications
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Download Notifications",
    "description": "This extension adds notifications for downloads, when complete or interrupted",
    "version": "0.0.0.1",
    "permissions": [
        "notifications",
        "downloads"
    ],
    "web_accessible_resources": [
        "icon.png"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "main.js",
            "bg.js"
        ]
    }
}