Bandcamp Feed Playlist
Play all of your feed in one click.
Vad är Bandcamp Feed Playlist?
Bandcamp Feed Playlist är en Chrome-tillägg utvecklad av Lucas Heymès, och dess huvudfunktion är "Play all of your feed in one click.".
Tilläggsskärmbilder
Ladda ner Bandcamp Feed Playlist-förlängningens CRX-fil
Ladda ner Bandcamp Feed Playlist-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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). Grundläggande Information om Tillägg
| Namn | |
| ID | gamdhngplmknmgomphiahlapgmacklfo |
| Officiell webbadress | https://chromewebstore.google.com/detail/bandcamp-feed-playlist/gamdhngplmknmgomphiahlapgmacklfo |
| Beskrivning | Play all of your feed in one click. |
| Filstorlek | 10.29 KB |
| Antal Installationer | 207 |
| Aktuell Version | 1.1.2 |
| Senast Uppdaterad | 2021-02-11 |
| Publiceringsdatum | 2020-05-14 |
| Betyg | 4.67/5 Totalt 3 Betyg |
| Utvecklare | Lucas Heymès |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/lovethebomb/bandcamp-feed-playlist |
| Hjälpsida URL | https://github.com/lovethebomb/bandcamp-feed-playlist |
| Stödda Språk | 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
} | |