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 |
Eメール | [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 } |