Bandcamp Auto Downloader

Automatically downloads your purchased albums and tracks in one click.

Was ist Bandcamp Auto Downloader?

Bandcamp Auto Downloader ist eine Chrome-Erweiterung, die von polamjag entwickelt wurde, und ihr Hauptmerkmal ist "Automatically downloads your purchased albums and tracks in one click.".

Erweiterungsscreenshots

screenshot

Bandcamp Auto Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bandcamp Auto Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        [Note: THIS IS UNOFFICIAL EXTENSION] This extension helps you download all of your purchased albums & tracks in one click                    

Grundlegende Informationen zur Erweiterung

Name Bandcamp Auto Downloader Bandcamp Auto Downloader
ID igbcekbalgomjoblhoehkemlcapkfaki
Offizielle URL https://chromewebstore.google.com/detail/bandcamp-auto-downloader/igbcekbalgomjoblhoehkemlcapkfaki
Beschreibung Automatically downloads your purchased albums and tracks in one click.
Dateigröße 6.04 KB
Installationsanzahl 1,284
Aktuelle Version 0.1.0
Letztes Update 2022-10-16
Veröffentlichungsdatum 2020-05-05
Bewertung 2.89/5 Insgesamt 9 Bewertungen
Entwickler polamjag
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/polamjag/chrome-bandcamp-auto-downloader
Hilfeseite URL https://github.com/polamjag/chrome-bandcamp-auto-downloader/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.0",
    "name": "Bandcamp Auto Downloader",
    "manifest_version": 3,
    "description": "Automatically downloads your purchased albums and tracks in one click.",
    "permissions": [
        "downloads",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/bandcamp.com\/"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/bandcamp.com\/download*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bandcamp.com\/download*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/main.js"
    },
    "icons": {
        "16": "icon-128.png",
        "128": "icon-128.png"
    }
}