Bandcamp Feed Playlist

Play all of your feed in one click.

Co to jest Bandcamp Feed Playlist?

Bandcamp Feed Playlist to rozszerzenie Chrome opracowane przez Lucas Heymès, a jego główną funkcją jest „Play all of your feed in one click.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Bandcamp Feed Playlist

Pobierz pliki rozszerzeń Bandcamp Feed Playlist w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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).                    

Podstawowe informacje o rozszerzeniu

Nazwa Bandcamp Feed Playlist Bandcamp Feed Playlist
ID gamdhngplmknmgomphiahlapgmacklfo
Oficjalny URL https://chromewebstore.google.com/detail/bandcamp-feed-playlist/gamdhngplmknmgomphiahlapgmacklfo
Opis Play all of your feed in one click.
Rozmiar pliku 10.29 KB
Liczba instalacji 207
Aktualna Wersja 1.1.2
Ostatnia Aktualizacja 2021-02-11
Data Publikacji 2020-05-14
Ocena 4.67/5 Łącznie 3 Oceny
Deweloper Lucas Heymès
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/lovethebomb/bandcamp-feed-playlist
Adres URL Strony Pomocy https://github.com/lovethebomb/bandcamp-feed-playlist
Obsługiwane Języki 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
}