Batchcamp

Bulk downloader for your Bandcamp purchases

Batchcamp란 무엇입니까?

Batchcamp은(는) hurfyd에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bulk downloader for your Bandcamp purchases"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Batchcamp 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}