Multiple File Download

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

O que é Multiple File Download?

Multiple File Download é uma extensão do Chrome desenvolvida por prabhushan, e sua principal característica é "This extension enables the user to select all the documents present in the web page for download.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Multiple File Download

Baixe arquivos de extensão Multiple File Download no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Multiple File Download Multiple File Download
ID opncjdadngnekakilfcgjlgbmekljdbm
URL Oficial https://chrome.google.com/webstore/detail/multiple-file-download/opncjdadngnekakilfcgjlgbmekljdbm
Descrição This extension enables the user to select all the documents present in the web page for download.
Tamanho do Arquivo 154 KB
Contagem de Instalações 10,000
Versão Atual 1.3
Última Atualização 2014-09-09
Data de Publicação 2014-09-09
Classificação 2.56/5 Total de 55 Avaliações
Desenvolvedor prabhushan
Tipo de Pagamento free
Idiomas Suportados 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"
}