Download Notifications
This extension adds notifications for downloads, when complete or interrupted
Что такое Download Notifications?
Download Notifications - это расширение Chrome, разработанное André Ferreira, и его основная функция - "This extension adds notifications for downloads, when complete or interrupted".
Снимки экрана расширения
Скачать файл CRX расширения Download Notifications
Скачайте файлы расширений Download Notifications в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| ID | eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
| Официальный URL | https://chromewebstore.google.com/detail/download-notifications/eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
| Описание | This extension adds notifications for downloads, when complete or interrupted |
| Размер файла | 5.26 KB |
| Количество установок | 261 |
| Текущая Версия | 0.0.0.1 |
| Последнее Обновление | 2014-07-19 |
| Дата публикации | 2014-07-19 |
| Рейтинг | 3.00/5 Всего 2 оценок |
| Разработчик | André Ferreira |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/aadfPT/ChromeDownloadNotifications |
| Поддерживаемые языки | 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"
]
}
} | |