Bandcamp Feed Playlist
Play all of your feed in one click.
Hvad er Bandcamp Feed Playlist?
Bandcamp Feed Playlist er en Chrome-udvidelse udviklet af Lucas Heymès, og dens hovedfunktion er "Play all of your feed in one click.".
Udvidelsesskærmbilleder
Download Bandcamp Feed Playlist-udvidelses-CRX-fil
Download Bandcamp Feed Playlist-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Bandcamp Feed Playlist |
ID | gamdhngplmknmgomphiahlapgmacklfo |
Officiel URL | https://chromewebstore.google.com/detail/bandcamp-feed-playlist/gamdhngplmknmgomphiahlapgmacklfo |
Beskrivelse | Play all of your feed in one click. |
Filstørrelse | 10.29 KB |
Antal Installationer | 207 |
Nuværende Version | 1.1.2 |
Senest Opdateret | 2021-02-11 |
Udgivelsesdato | 2020-05-14 |
Bedømmelse | 4.67/5 Samlet 3 Bedømmelser |
Udvikler | Lucas Heymès |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/lovethebomb/bandcamp-feed-playlist |
Hjælpeside-URL | https://github.com/lovethebomb/bandcamp-feed-playlist |
Understøttede Sprog | 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 } |