Download Notifications

This extension adds notifications for downloads, when complete or interrupted

Co je Download Notifications?

Download Notifications je rozšíření Chrome vyvinuté André Ferreira, a jeho hlavní funkcí je „This extension adds notifications for downloads, when complete or interrupted“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Download Notifications

Stáhněte si soubory rozšíření Download Notifications ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Download Notifications Download Notifications
ID eeffjbbdjlmldkkhdjdfaamgdmolpjpp
Oficiální URL https://chromewebstore.google.com/detail/download-notifications/eeffjbbdjlmldkkhdjdfaamgdmolpjpp
Popis This extension adds notifications for downloads, when complete or interrupted
Velikost souboru 5.26 KB
Počet instalací 261
Aktuální Verze 0.0.0.1
Poslední Aktualizace 2014-07-19
Datum Vydání 2014-07-19
Hodnocení 3.00/5 Celkem 2 Hodnocení
Vývojář André Ferreira
Typ Platby free
Webové stránky Rozšíření https://github.com/aadfPT/ChromeDownloadNotifications
Podporované Jazyky 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"
        ]
    }
}