Bandcamp Feed Playlist

Play all of your feed in one click.

Was ist Bandcamp Feed Playlist?

Bandcamp Feed Playlist ist eine Chrome-Erweiterung, die von Lucas Heymès entwickelt wurde, und ihr Hauptmerkmal ist "Play all of your feed in one click.".

Erweiterungsscreenshots

screenshot

Bandcamp Feed Playlist-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bandcamp Feed Playlist-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

                        This is a lazy Chrome Extension that adds a mini player on the Bandcamp feed page.

It allows you to quickly Play/Pause, go to next and previous track, and support autoplay of the tracks shared on your feed.

The code is public and available on GitHub (Website link below).                    

Grundlegende Informationen zur Erweiterung

Name Bandcamp Feed Playlist Bandcamp Feed Playlist
ID gamdhngplmknmgomphiahlapgmacklfo
Offizielle URL https://chromewebstore.google.com/detail/bandcamp-feed-playlist/gamdhngplmknmgomphiahlapgmacklfo
Beschreibung Play all of your feed in one click.
Dateigröße 10.29 KB
Installationsanzahl 207
Aktuelle Version 1.1.2
Letztes Update 2021-02-11
Veröffentlichungsdatum 2020-05-14
Bewertung 4.67/5 Insgesamt 3 Bewertungen
Entwickler Lucas Heymès
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/lovethebomb/bandcamp-feed-playlist
Hilfeseite URL https://github.com/lovethebomb/bandcamp-feed-playlist
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bandcamp Feed Playlist",
    "version": "1.1.2",
    "description": "Play all of your feed in one click.",
    "permissions": [
        "https:\/\/bandcamp.com\/*\/feed"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bandcamp.com\/*\/feed"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "contentScript.js"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}