Download Notifications
This extension adds notifications for downloads, when complete or interrupted
Cos'è Download Notifications?
Download Notifications è un'estensione di Chrome sviluppata da André Ferreira, e la sua funzione principale è "This extension adds notifications for downloads, when complete or interrupted".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Download Notifications
Scarica i file di estensione Download Notifications in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Download Notifications |
ID | eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
URL Ufficiale | https://chromewebstore.google.com/detail/download-notifications/eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
Descrizione | This extension adds notifications for downloads, when complete or interrupted |
Dimensione del File | 5.26 KB |
Conteggio Installazioni | 261 |
Versione Corrente | 0.0.0.1 |
Ultimo Aggiornamento | 2014-07-19 |
Data di Pubblicazione | 2014-07-19 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | André Ferreira |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/aadfPT/ChromeDownloadNotifications |
Lingue Supportate | 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" ] } } |