Batch Link Downloader

Download multiple links from a website easily.

Τι είναι το Batch Link Downloader;

Το Batch Link Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Fabian Gremper, και η κύρια λειτουργία του είναι "Download multiple links from a website easily.".

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

screenshot

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

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

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

                        Download many links from a website easily.

Do you want to download a bunch of PDFs, podcasts, or other files from a website and not right-click-"Save-as" every single one of them? Batch Link Downloader solves this problem for you!

Batch Link Downloader is a DownThemAll! alternative for Chrome.

Go to Chrome Preferences ("chrome://settings/"), "Advanced", and disable "Ask where to save each file before downloading" to avoid popups for every file.

This is the first release. Feedback and even feature requests are very welcome. Use the feedback form in the Chrome Web Store (Support → Tell the Developer) or send an email to [email protected]                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Batch Link Downloader Batch Link Downloader
ID aiahkbnnpafepcgnhhecilboebmmolnn
Επίσημο URL https://chromewebstore.google.com/detail/batch-link-downloader/aiahkbnnpafepcgnhhecilboebmmolnn
Περιγραφή Download multiple links from a website easily.
Μέγεθος Αρχείου 47.02 KB
Αριθμός Εγκαταστάσεων 152,595
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2020-05-20
Ημερομηνία Δημοσίευσης 2020-05-20
Αξιολόγηση 4.11/5 Συνολικά 301 Αξιολογήσεις
Προγραμματιστής Fabian Gremper
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Batch Link Downloader",
    "version": "1.0.1",
    "description": "Download multiple links from a website easily.",
    "author": "Fabian Gremper",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Batch Link Downloader",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "downloads"
    ]
}