Multiple File Downloader

Quickly get the downloads and nothing else.

Multiple File Downloader란 무엇입니까?

Multiple File Downloader은(는) https://mediascienceinternational.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly get the downloads and nothing else."입니다.

확장 프로그램 스크린샷

screenshot

Multiple File Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Hassle-free download of multiple files. Lets you choose from all downloadable content on a page.

The icon shows only when a page indicates that it contains downloadable content. Otherwise, the extension stays out of your way.

MSI Multiple-file downloader uses the new HTML5 "download" attribute to decide if a file is downloadable. If anything on the page is downloadable, you see the download icon in your address bar. Click on the icon, choose the files you want and Chrome does the rest.

MSI Multiple-file downloader works with non-HTML5 pages, too. As a website developer, you can put the "download" attribute into any anchor tags to instantly add multiple-file download capability to your web page.


*** Changes

* 1.4.2 resolved tab permission issue
* 1.4.1 resolved storage permission issue

* 1.4.0 download operations to background page

* 1.3.0 make extension scriptable

* 1.2.0 combine content columns

* 1.1.1 include missing icons

* 1.1.0 Remove "links" column

* 1.0 Public Release

* 0.8 Third beta release
+ package metadata for store

* 0.7 Second beta release
+ Beta in name
+ short name

* 0.6 First beta release

*** Notice
Portions of this software are licensed to Media Science International, LLC ("MSI") under one or more contributor license agreements. See the NOTICE file in the published source code for additional information regarding copyright ownership.

*** Source Code
Portions of this software are published as open-source and are available at https://github.com/mediascience/Browser-Multiple-Downloader                    

확장 프로그램 기본 정보

이름 Multiple File Downloader Multiple File Downloader
ID ijodceacahodmjmdmfcobdepogaajbpc
공식 URL https://chromewebstore.google.com/detail/multiple-file-downloader/ijodceacahodmjmdmfcobdepogaajbpc
설명 Quickly get the downloads and nothing else.
파일 크기 14.52 KB
설치 횟수 14,277
현재 버전 1.4.2
최근 업데이트 2022-07-01
출시 날짜 2014-10-06
평점 1.59/5 총 121 개의 평점
개발자 https://mediascienceinternational.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mediascience/Browser-Multiple-Downloader
도움말 페이지 URL https://github.com/mediascience/Browser-Multiple-Downloader/wiki
개인정보 보호 정책 페이지 URL https://studiocdn.com/privacy-terms-of-use
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Multiple File Downloader",
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Alt+Shift+D",
                "windows": "Alt+Shift+D",
                "mac": "Alt+Shift+D"
            }
        }
    },
    "short_name": "Multifile DL",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "description": "Quickly get the downloads and nothing else.",
    "version": "1.4.2",
    "permissions": [
        "downloads",
        ""
    ],
    "manifest_version": 2,
    "page_action": {
        "default_icon": {
            "19": "images\/icon_19.png",
            "38": "images\/icon_38.png"
        },
        "default_title": "Multiple File Downloader",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}