Bandcamp Feed Playlist

Play all of your feed in one click.

Bandcamp Feed Playlist क्या है?

Bandcamp Feed Playlist Lucas Heymès द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Play all of your feed in one click."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bandcamp Feed Playlist एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक 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
}