Multiple File Downloader

Quickly get the downloads and nothing else.

Τι είναι το Multiple File Downloader;

Το Multiple File Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://mediascienceinternational.com, και η κύρια λειτουργία του είναι "Quickly get the downloads and nothing else.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Multiple File Downloader

Λήψη αρχείων επέκτασης Multiple File Downloader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
        }
    ]
}