Batchcamp

Bulk downloader for your Bandcamp purchases

ما هو Batchcamp؟

Batchcamp هو إضافة Chrome تم تطويرها بواسطة hurfyd، والميزة الرئيسية لها هي "Bulk downloader for your Bandcamp purchases".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Batchcamp

قم بتنزيل ملفات الامتداد Batchcamp بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        The Batchcamp extension provides an easy and intuitive way to bulk download your purchases from Bandcamp and is useful if you:

✅ Buy many releases on Bandcamp Fridays or full discographies
✅ Want to download your collection again in a different format
✅ Had a storage failure and need to re-download everything

Now you can bulk download any, or all, of your purchases with only a couple of clicks! 

Go to your collection page, select what you want using the checkboxes on each release, click the Download button and everything will queue up and download automatically.

A new tab shows the queue of downloads with their individual statuses and progress. You can retry any that might have failed or remove anything you changed your mind about.

Clicking the extension icon will popup the options screen where you can set the default download format and the number of downloads to process at once.

Big Room Tech House DJ Tool - TIP(s)!
- If Chrome keeps popping up and asking you where to save each download: open up your Chrome settings, search for Ask where to save each file before downloading and toggle it off

- Multi selecting works using the Shift key. To select everything in your Collection scroll all the way down and keep scrolling until you have loaded everything. Hold down your Shift key and check the final item in the list. This will select everything                    

معلومات أساسية عن التمديد

الاسم Batchcamp Batchcamp
ID jfcffbaekgnenlohblfgpohgdhalgjeb
عنوان URL الرسمي https://chromewebstore.google.com/detail/batchcamp/jfcffbaekgnenlohblfgpohgdhalgjeb
الوصف Bulk downloader for your Bandcamp purchases
حجم الملف 182 KB
عدد التثبيتات 5,045
النسخة الحالية 1.4.3
آخر تحديث 2024-02-05
تاريخ النشر 2022-07-30
تقييم 4.88/5 مجموع تقييمات 25
المطور hurfyd
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/hyphmongo/batchcamp
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Batchcamp",
    "description": "Bulk downloader for your Bandcamp purchases",
    "version": "1.4.3",
    "action": {
        "default_popup": "src\/popup\/index.html",
        "default_icon": {
            "16": "icon-16.png",
            "64": "icon-64.png",
            "128": "icon-128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "src\/content\/index.js"
            ],
            "matches": [
                "https:\/\/bandcamp.com\/*"
            ],
            "run_at": "document_start",
            "css": [
                "style.css"
            ]
        }
    ],
    "background": {
        "service_worker": "src\/background\/index.js"
    },
    "permissions": [
        "storage",
        "downloads",
        "downloads.shelf"
    ],
    "icons": {
        "16": "icon-16.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    }
}