Bandcamp Feed Playlist
Play all of your feed in one click.
什么是Bandcamp Feed Playlist?
Bandcamp Feed Playlist是由Lucas Heymès开发的Chrome扩展程序,该扩展的主要功能是“Play all of your feed in one click.”。
扩展截图
下载Bandcamp Feed Playlist扩展crx文件
下载Bandcamp Feed Playlist扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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).
扩展基本信息
名称 | Bandcamp Feed Playlist |
ID | gamdhngplmknmgomphiahlapgmacklfo |
官方URL | https://chromewebstore.google.com/detail/bandcamp-feed-playlist/gamdhngplmknmgomphiahlapgmacklfo |
简介 | Play all of your feed in one click. |
文件大小 | 10.29 KB |
安装次数 | 207 |
当前版本 | 1.1.2 |
更新时间 | 2021-02-11 |
上架时间 | 2020-05-14 |
评分 | 4.67/5 共3次评分 |
开发者 | Lucas Heymès |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/lovethebomb/bandcamp-feed-playlist |
帮助页面URL | https://github.com/lovethebomb/bandcamp-feed-playlist |
支持的语言 | 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 } |