Download Notifications
This extension adds notifications for downloads, when complete or interrupted
Wat is Download Notifications?
Download Notifications is een Chrome-extensie ontwikkeld door André Ferreira, en de belangrijkste functie is "This extension adds notifications for downloads, when complete or interrupted".
Extensie Screenshots
Download het CRX-bestand van de extensie Download Notifications
Download Download Notifications-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Download Notifications |
ID | eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
Officiële URL | https://chromewebstore.google.com/detail/download-notifications/eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
Beschrijving | This extension adds notifications for downloads, when complete or interrupted |
Bestandsgrootte | 5.26 KB |
Aantal Installaties | 261 |
Huidige Versie | 0.0.0.1 |
Laatst Bijgewerkt | 2014-07-19 |
Publicatiedatum | 2014-07-19 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | André Ferreira |
Betalingswijze | free |
Extensiewebsite | https://github.com/aadfPT/ChromeDownloadNotifications |
Ondersteunde Talen | 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" ] } } |