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
官方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"
        ]
    }
}