Download Notifications
This extension adds notifications for downloads, when complete or interrupted
O que é Download Notifications?
Download Notifications é uma extensão do Chrome desenvolvida por André Ferreira, e sua principal característica é "This extension adds notifications for downloads, when complete or interrupted".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Download Notifications
Baixe arquivos de extensão Download Notifications no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Download Notifications |
ID | eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
URL Oficial | https://chromewebstore.google.com/detail/download-notifications/eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
Descrição | This extension adds notifications for downloads, when complete or interrupted |
Tamanho do Arquivo | 5.26 KB |
Contagem de Instalações | 261 |
Versão Atual | 0.0.0.1 |
Última Atualização | 2014-07-19 |
Data de Publicação | 2014-07-19 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | André Ferreira |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/aadfPT/ChromeDownloadNotifications |
Idiomas Suportados | 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" ] } } |