Download Manager Button

Browser Action Download Manager User Interface for Google Chrome

What is Download Manager Button?

Download Manager Button is a Chrome extension developed by [email protected], and its main feature is "Browser Action Download Manager User Interface for Google Chrome".

Extension Screenshots

screenshot
screenshot

Download Download Manager Button Extension CRX File

Download Download Manager Button extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This browser action button displays total download progress. The browser action popup allows pausing, resuming, canceling, opening, erasing, retrying, and searching for downloads, accepting dangerous downloads, opening the download's referrer, removing the file, and showing the file in its folder.

This is a demo extension to showcase the potential of the new chrome.downloads API.                    

Extension Basic Information

Name Download Manager Button Download Manager Button
ID jglgknilkoejnnjngnmoobbhdckpdmem
Official URL https://chrome.google.com/webstore/detail/download-manager-button/jglgknilkoejnnjngnmoobbhdckpdmem
Description Browser Action Download Manager User Interface for Google Chrome
File Size 19.44 KB
Installation Count 2,000
Current Version 1.0
Last Updated 2013-11-14
Publish Date 2013-11-14
Rating 3.87/5 Total 54 Ratings
Developer [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.0",
    "minimum_chrome_version": "31.0.1650",
    "manifest_version": 2,
    "description": "__MSG_extDesc__",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "__MSG_extName__",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "default_locale": "en",
    "optional_permissions": [
        "management"
    ],
    "permissions": [
        "downloads",
        "downloads.open",
        "downloads.shelf",
        "tabs"
    ]
}