Download Notifications
This extension adds notifications for downloads, when complete or interrupted
Apa itu Download Notifications?
Download Notifications adalah ekstensi Chrome yang dikembangkan oleh André Ferreira, dan fitur utamanya adalah "This extension adds notifications for downloads, when complete or interrupted".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Download Notifications
Unduh file ekstensi Download Notifications dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Download Notifications |
ID | eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
URL Resmi | https://chromewebstore.google.com/detail/download-notifications/eeffjbbdjlmldkkhdjdfaamgdmolpjpp |
Deskripsi | This extension adds notifications for downloads, when complete or interrupted |
Ukuran File | 5.26 KB |
Jumlah Instalasi | 261 |
Versi Saat Ini | 0.0.0.1 |
Terakhir Diperbarui | 2014-07-19 |
Tanggal Publikasi | 2014-07-19 |
Penilaian | 3.00/5 Total 2 Penilaian |
Pengembang | André Ferreira |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/aadfPT/ChromeDownloadNotifications |
Bahasa yang Didukung | 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" ] } } |