Bandcamp Feed Playlist

Play all of your feed in one click.

Bandcamp Feed Playlist là gì?

Bandcamp Feed Playlist là một tiện ích mở rộng Chrome được phát triển bởi Lucas Heymès, và tính năng chính của nó là "Play all of your feed in one click.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bandcamp Feed Playlist

Tải xuống các tệp mở rộng Bandcamp Feed Playlist dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bandcamp Feed Playlist Bandcamp Feed Playlist
ID gamdhngplmknmgomphiahlapgmacklfo
URL Chính Thức https://chromewebstore.google.com/detail/bandcamp-feed-playlist/gamdhngplmknmgomphiahlapgmacklfo
Mô tả Play all of your feed in one click.
Kích Thước Tệp 10.29 KB
Số Lần Cài Đặt 207
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2021-02-11
Ngày Phát Hành 2020-05-14
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Lucas Heymès
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lovethebomb/bandcamp-feed-playlist
URL Trang Trợ Giúp https://github.com/lovethebomb/bandcamp-feed-playlist
Ngôn Ngữ Được Hỗ Trợ 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
}