Download Notifications

This extension adds notifications for downloads, when complete or interrupted

Hvad er Download Notifications?

Download Notifications er en Chrome-udvidelse udviklet af André Ferreira, og dens hovedfunktion er "This extension adds notifications for downloads, when complete or interrupted".

Udvidelsesskærmbilleder

screenshot

Download Download Notifications-udvidelses-CRX-fil

Download Download Notifications-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Download Notifications Download Notifications
ID eeffjbbdjlmldkkhdjdfaamgdmolpjpp
Officiel URL https://chromewebstore.google.com/detail/download-notifications/eeffjbbdjlmldkkhdjdfaamgdmolpjpp
Beskrivelse This extension adds notifications for downloads, when complete or interrupted
Filstørrelse 5.26 KB
Antal Installationer 261
Nuværende Version 0.0.0.1
Senest Opdateret 2014-07-19
Udgivelsesdato 2014-07-19
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler André Ferreira
Betalingsmetode free
Udvidelseswebsted https://github.com/aadfPT/ChromeDownloadNotifications
Understøttede Sprog 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"
        ]
    }
}