Bandcamp Auto Downloader
Automatically downloads your purchased albums and tracks in one click.
Wat is Bandcamp Auto Downloader?
Bandcamp Auto Downloader is een Chrome-extensie ontwikkeld door polamjag, en de belangrijkste functie is "Automatically downloads your purchased albums and tracks in one click.".
Extensie Screenshots
Download het CRX-bestand van de extensie Bandcamp Auto Downloader
Download Bandcamp Auto Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
[Note: THIS IS UNOFFICIAL EXTENSION] This extension helps you download all of your purchased albums & tracks in one click Basisinformatie over de Extensie
| Naam | |
| ID | igbcekbalgomjoblhoehkemlcapkfaki |
| Officiële URL | https://chromewebstore.google.com/detail/bandcamp-auto-downloader/igbcekbalgomjoblhoehkemlcapkfaki |
| Beschrijving | Automatically downloads your purchased albums and tracks in one click. |
| Bestandsgrootte | 6.04 KB |
| Aantal Installaties | 1,284 |
| Huidige Versie | 0.1.0 |
| Laatst Bijgewerkt | 2022-10-16 |
| Publicatiedatum | 2020-05-05 |
| Beoordeling | 2.89/5 Totaal 9 Beoordelingen |
| Ontwikkelaar | polamjag |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/polamjag/chrome-bandcamp-auto-downloader |
| Help Pagina-URL | https://github.com/polamjag/chrome-bandcamp-auto-downloader/issues |
| Ondersteunde Talen | 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"
}
} | |