Batch Link Downloader

Download multiple links from a website easily.

Batch Link Downloader क्या है?

Batch Link Downloader Fabian Gremper द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download multiple links from a website easily."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Batch Link Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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