Bandcamp+

Add multiple features to bandcamp.com

Cos'è Bandcamp+?

Bandcamp+ è un'estensione di Chrome sviluppata da Bamdad, e la sua funzione principale è "Add multiple features to bandcamp.com".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Bandcamp+

Scarica i file di estensione Bandcamp+ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        📖 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                    

Informazioni di Base sull'Estensione

Nome Bandcamp+ Bandcamp+
ID hggjmjobahhmbmnfndhdgidchhhhjkad
URL Ufficiale https://chromewebstore.google.com/detail/bandcamp+/hggjmjobahhmbmnfndhdgidchhhhjkad
Descrizione Add multiple features to bandcamp.com
Dimensione del File 18.09 KB
Conteggio Installazioni 312
Versione Corrente 3.2.4
Ultimo Aggiornamento 2023-08-25
Data di Pubblicazione 2021-10-31
Valutazione 4.80/5 Totale 5 Valutazioni
Sviluppatore Bamdad
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/bamdadsabbagh/bandcamp-plus--extension
URL della Pagina di Aiuto https://github.com/bamdadsabbagh/bandcamp-plus--extension/issues
URL della Pagina della Politica sulla Privacy https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy
Lingue Supportate 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"
        ]
    }
}