Bandcamp+

Add multiple features to bandcamp.com

Wat is Bandcamp+?

Bandcamp+ is een Chrome-extensie ontwikkeld door Bamdad, en de belangrijkste functie is "Add multiple features to bandcamp.com".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Bandcamp+

Download Bandcamp+-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

                        📖 Features

- Arrange Bandcamp layout
- Wishlist single tracks from release page
- Add volume control
- Add speed control with vinyl and stretched modes
- Copy track info to clipboard

⌨️ Keyboard Shortcuts

`Space` play/pause
`C` copy track info
`W` wishlist current track
`Shift + W` wishlist release
`N` next track
`P` previous track
`Shift + P` play first track
`→` seek 10 sec forward
`←` seek 10 sec backward
`Shift + ←` seek start
`↑` increase volume
`↓` decrease volume
`R` reset volume
`Shift + ↑` increase speed
`Shift + ↓` decrease speed
`Shift + R` reset speed                    

Basisinformatie over de Extensie

Naam Bandcamp+ Bandcamp+
ID hggjmjobahhmbmnfndhdgidchhhhjkad
Officiële URL https://chromewebstore.google.com/detail/bandcamp+/hggjmjobahhmbmnfndhdgidchhhhjkad
Beschrijving Add multiple features to bandcamp.com
Bestandsgrootte 18.09 KB
Aantal Installaties 312
Huidige Versie 3.2.4
Laatst Bijgewerkt 2023-08-25
Publicatiedatum 2021-10-31
Beoordeling 4.80/5 Totaal 5 Beoordelingen
Ontwikkelaar Bamdad
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/bamdadsabbagh/bandcamp-plus--extension
Help Pagina-URL https://github.com/bamdadsabbagh/bandcamp-plus--extension/issues
URL van de Privacybeleid Pagina https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bandcamp+",
    "short_name": "bandcamp-plus",
    "description": "Add multiple features to bandcamp.com",
    "version": "3.2.4",
    "manifest_version": 2,
    "icons": {
        "512": "assets\/bandcamp-plus-icon.png"
    },
    "browser_action": {
        "default_title": "Bandcamp+",
        "default_icon": {
            "512": "assets\/bandcamp-plus-icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.bandcamp.com\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "assets\/content.css"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    }
}