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.”。

擴展截圖

screenshot

下載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 Bandcamp Feed Playlist
ID gamdhngplmknmgomphiahlapgmacklfo
官方網址 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
}