Bandcamp Feed Playlist
Play all of your feed in one click.
Wat is Bandcamp Feed Playlist?
Bandcamp Feed Playlist is een Chrome-extensie ontwikkeld door Lucas Heymès, en de belangrijkste functie is "Play all of your feed in one click.".
Extensie Screenshots
Download het CRX-bestand van de extensie Bandcamp Feed Playlist
Download Bandcamp Feed Playlist-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
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). Basisinformatie over de Extensie
| Naam | |
| ID | gamdhngplmknmgomphiahlapgmacklfo |
| Officiële URL | https://chromewebstore.google.com/detail/bandcamp-feed-playlist/gamdhngplmknmgomphiahlapgmacklfo |
| Beschrijving | Play all of your feed in one click. |
| Bestandsgrootte | 10.29 KB |
| Aantal Installaties | 207 |
| Huidige Versie | 1.1.2 |
| Laatst Bijgewerkt | 2021-02-11 |
| Publicatiedatum | 2020-05-14 |
| Beoordeling | 4.67/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | Lucas Heymès |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/lovethebomb/bandcamp-feed-playlist |
| Help Pagina-URL | https://github.com/lovethebomb/bandcamp-feed-playlist |
| Ondersteunde Talen | 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
} | |