Download Notifications
This extension adds notifications for downloads, when complete or interrupted
What is Download Notifications?
Download Notifications is a Chrome extension developed by André Ferreira, and its main feature is "This extension adds notifications for downloads, when complete or interrupted".
Extension Screenshots
Download Download Notifications Extension CRX File
Download Download Notifications extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 Extension Basic Information
| Name | |
| ID | eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
| Official URL | https://chromewebstore.google.com/detail/download-notifications/eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
| Description | This extension adds notifications for downloads, when complete or interrupted |
| File Size | 5.26 KB |
| Installation Count | 261 |
| Current Version | 0.0.0.1 |
| Last Updated | 2014-07-19 |
| Publish Date | 2014-07-19 |
| Rating | 3.00/5 Total 2 Ratings |
| Developer | André Ferreira |
| Payment Type | free |
| Extension Website | https://github.com/aadfPT/ChromeDownloadNotifications |
| Supported Languages | 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"
]
}
} | |