Bandcamp Feed Playlist
Play all of your feed in one click.
Apa itu Bandcamp Feed Playlist?
Bandcamp Feed Playlist adalah ekstensi Chrome yang dikembangkan oleh Lucas Heymès, dan fitur utamanya adalah "Play all of your feed in one click.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Bandcamp Feed Playlist
Unduh file ekstensi Bandcamp Feed Playlist dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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).
Informasi Dasar Ekstensi
Nama | Bandcamp Feed Playlist |
ID | gamdhngplmknmgomphiahlapgmacklfo |
URL Resmi | https://chromewebstore.google.com/detail/bandcamp-feed-playlist/gamdhngplmknmgomphiahlapgmacklfo |
Deskripsi | Play all of your feed in one click. |
Ukuran File | 10.29 KB |
Jumlah Instalasi | 207 |
Versi Saat Ini | 1.1.2 |
Terakhir Diperbarui | 2021-02-11 |
Tanggal Publikasi | 2020-05-14 |
Penilaian | 4.67/5 Total 3 Penilaian |
Pengembang | Lucas Heymès |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/lovethebomb/bandcamp-feed-playlist |
URL Halaman Bantuan | https://github.com/lovethebomb/bandcamp-feed-playlist |
Bahasa yang Didukung | 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 } |