Bandcamp Feed Playlist
Play all of your feed in one click.
Qu'est-ce que Bandcamp Feed Playlist ?
Bandcamp Feed Playlist est une extension Chrome développée par Lucas Heymès, et sa fonction principale est "Play all of your feed in one click.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Bandcamp Feed Playlist
Téléchargez les fichiers d'extension Bandcamp Feed Playlist au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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).
Informations de Base sur l'Extension
Nom | Bandcamp Feed Playlist |
ID | gamdhngplmknmgomphiahlapgmacklfo |
URL Officiel | https://chromewebstore.google.com/detail/bandcamp-feed-playlist/gamdhngplmknmgomphiahlapgmacklfo |
Description | Play all of your feed in one click. |
Taille du Fichier | 10.29 KB |
Nombre d'Installations | 207 |
Version Actuelle | 1.1.2 |
Dernière Mise à Jour | 2021-02-11 |
Date de Publication | 2020-05-14 |
Évaluation | 4.67/5 Total 3 Évaluations |
Développeur | Lucas Heymès |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/lovethebomb/bandcamp-feed-playlist |
URL de la Page d'Aide | https://github.com/lovethebomb/bandcamp-feed-playlist |
Langues Prises en Charge | 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 } |