Download Notifications

This extension adds notifications for downloads, when complete or interrupted

Co to jest Download Notifications?

Download Notifications to rozszerzenie Chrome opracowane przez André Ferreira, a jego główną funkcją jest „This extension adds notifications for downloads, when complete or interrupted”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Download Notifications

Pobierz pliki rozszerzeń Download Notifications w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Download Notifications Download Notifications
ID eeffjbbdjlmldkkhdjdfaamgdmolpjpp
Oficjalny URL https://chromewebstore.google.com/detail/download-notifications/eeffjbbdjlmldkkhdjdfaamgdmolpjpp
Opis This extension adds notifications for downloads, when complete or interrupted
Rozmiar pliku 5.26 KB
Liczba instalacji 261
Aktualna Wersja 0.0.0.1
Ostatnia Aktualizacja 2014-07-19
Data Publikacji 2014-07-19
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper André Ferreira
Typ Płatności free
Strona Rozszerzenia https://github.com/aadfPT/ChromeDownloadNotifications
Obsługiwane Języki 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"
        ]
    }
}