Download Notifications
This extension adds notifications for downloads, when complete or interrupted
Vad är Download Notifications?
Download Notifications är en Chrome-tillägg utvecklad av André Ferreira, och dess huvudfunktion är "This extension adds notifications for downloads, when complete or interrupted".
Tilläggsskärmbilder
Ladda ner Download Notifications-förlängningens CRX-fil
Ladda ner Download Notifications-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
| Officiell webbadress | https://chromewebstore.google.com/detail/download-notifications/eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
| Beskrivning | This extension adds notifications for downloads, when complete or interrupted |
| Filstorlek | 5.26 KB |
| Antal Installationer | 261 |
| Aktuell Version | 0.0.0.1 |
| Senast Uppdaterad | 2014-07-19 |
| Publiceringsdatum | 2014-07-19 |
| Betyg | 3.00/5 Totalt 2 Betyg |
| Utvecklare | André Ferreira |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/aadfPT/ChromeDownloadNotifications |
| Stödda Språk | 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"
]
}
} | |