Multiple File Download

This extension enables the user to select all the documents present in the web page for download.

What is Multiple File Download?

Multiple File Download is a Chrome extension developed by prabhushan, and its main feature is "This extension enables the user to select all the documents present in the web page for download.".

Extension Screenshots

screenshot
screenshot

Download Multiple File Download Extension CRX File

Download Multiple File Download 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

                        Many times we encounter situations where multiple files need to be downloaded from a web page. For example, user can download all the files in Coursera lessons in one shot. This would save lot of time.

Multiple file downloader facilitates the same. It scans through the web page and displays all the files, which user can download. User can select multiple files and click download.
It allows user to customize what file extensions should be downloaded in the web page.The user can also add custom extensions using the options page. User can also decide whether files need to be downloaded to default folder set in Chrome browser or prompt for each file.
BENEFITS FOR END USERS
1) Multi Select files in one go
2) Customise and also add your own extensions to download
KNOWN ISSUE
The extension scans for hyperlink across the web page. As per the design of the page, the hyperlink can be a button or image or both. So there are chances that duplicate links can appear on the extension.                    

Extension Basic Information

Name Multiple File Download Multiple File Download
ID opncjdadngnekakilfcgjlgbmekljdbm
Official URL https://chrome.google.com/webstore/detail/multiple-file-download/opncjdadngnekakilfcgjlgbmekljdbm
Description This extension enables the user to select all the documents present in the web page for download.
File Size 154 KB
Installation Count 10,000
Current Version 1.3
Last Updated 2014-09-09
Publish Date 2014-09-09
Rating 2.56/5 Total 55 Ratings
Developer prabhushan
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Multiple File Download",
    "description": "This extension enables the user to select all the documents present in the web page for download. ",
    "short_name": "File download",
    "version": "1.3",
    "background": {
        "page": "popup.html"
    },
    "icons": {
        "16": "sonicdownload.png",
        "48": "sonicdownload.png",
        "128": "sonicdownload.png"
    },
    "permissions": [
        "tabs",
        "",
        "downloads",
        "storage"
    ],
    "browser_action": {
        "default_icon": "sonicdownload.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "https:\/\/*\/\/",
                "http:\/\/*\/\/"
            ]
        }
    ],
    "options_page": "options.html"
}