Download Notifications

This extension adds notifications for downloads, when complete or interrupted

什麼是Download Notifications?

Download Notifications是由André Ferreira開發的Chrome擴展程式,該擴展的主要功能是“This extension adds notifications for downloads, when complete or interrupted”。

擴展截圖

screenshot

下載Download Notifications擴展crx文件

下載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                    

擴展基本資訊

名稱 Download Notifications Download Notifications
ID eeffjbbdjlmldkkhdjdfaamgdmolpjpp
官方網址 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"
        ]
    }
}