Bandcamp Feed Playlist
Play all of your feed in one click.
What is Bandcamp Feed Playlist?
Bandcamp Feed Playlist is a Chrome extension developed by Lucas Heymès, and its main feature is "Play all of your feed in one click.".
Extension Screenshots
Download Bandcamp Feed Playlist Extension CRX File
Download Bandcamp Feed Playlist extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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).
Extension Basic Information
Name | Bandcamp Feed Playlist |
ID | gamdhngplmknmgomphiahlapgmacklfo |
Official URL | https://chromewebstore.google.com/detail/bandcamp-feed-playlist/gamdhngplmknmgomphiahlapgmacklfo |
Description | Play all of your feed in one click. |
File Size | 10.29 KB |
Installation Count | 207 |
Current Version | 1.1.2 |
Last Updated | 2021-02-11 |
Publish Date | 2020-05-14 |
Rating | 4.67/5 Total 3 Ratings |
Developer | Lucas Heymès |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/lovethebomb/bandcamp-feed-playlist |
Help Page URL | https://github.com/lovethebomb/bandcamp-feed-playlist |
Supported Languages | 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 } |