Bandcamp Play

Automation of work with Bandcamp: autoplay, control by hotkeys and etc.

Τι είναι το Bandcamp Play;

Το Bandcamp Play είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον borbiuk, και η κύρια λειτουργία του είναι "Automation of work with Bandcamp: autoplay, control by hotkeys and etc.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Bandcamp Play

Λήψη αρχείων επέκτασης Bandcamp Play σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        🚀 Introducing Bandcamp Play, the premier online record store extension designed exclusively for Bandcamp enthusiasts. With its integrated features and automation, your music browsing and listening experiences are enhanced.

⚙️KEY FEATURES:

📍Autoplay: Effortlessly enjoy your own or others' collections, wishlists, and feeds without interruptions.

📍 Hotkeys:

✅ Available on the collection, wishlist, feed, album, track and discover pages:
- Spacebar: Control track playback with a simple spacebar click.
- 'N' Key: Play the next track from the beginning.
- 'B' Key: Play the previous track from the beginning.
- 'O' Key: Open Album or Track in new tab.
- Shift + Digit from 1️⃣ to 9️⃣: Play track by index.

✅ Available on the collection, wishlist, album, and track pages:
- Digit from 0️⃣ to 9️⃣: Move track playback on 0, 10, 20 ... 90%.
- ⬅️ or ➡️ key: Move track playback back or forward on a configured count of seconds.

✅ Available on collection and wishlist pages:
- 'M' Key: Play the next track while continuing from the progress of the previous track.

✅ Available on collection, wishlist, feed, album and track pages:
- 'L' Key: Add or remove item from Wishlist collection.

📍 Auto-Click the 'View All Items' Button: Automatically navigate through any collection by clicking the 'View All Items' button.


🛠️ UPCOMING ADDITIONS:

- Suggest Functionality: Feel free to suggest functionalities you'd like to see in our extension - https://github.com/borbiuk/band-play/issues
- Create Playlists: Soon, you'll have the ability to curate personalized playlists, effortlessly crafting your perfect musical journey for each collection.
- Integration with discogs.com: Display additional information about items in collections (such as genre and more).


🌈 WE VALUE YOUR FEEDBACK:

Your experience is important to us. If you encounter any bugs or have innovative ideas for new features, please create an issue on our GitHub page (https://github.com/borbiuk/band-play).

Enhance your Bandcamp journey with Bandcamp Play and unlock a world of seamless, uninterrupted music exploration. Join our community of music enthusiasts today and elevate your listening experience to new heights!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Bandcamp Play Bandcamp Play
ID nooegmjcddclidfdlibmgcpaahkikmlh
Επίσημο URL https://chromewebstore.google.com/detail/bandcamp-play/nooegmjcddclidfdlibmgcpaahkikmlh
Περιγραφή Automation of work with Bandcamp: autoplay, control by hotkeys and etc.
Μέγεθος Αρχείου 222 KB
Αριθμός Εγκαταστάσεων 76
Τρέχουσα Έκδοση 4.0.8
Τελευταία Ενημέρωση 2024-03-04
Ημερομηνία Δημοσίευσης 2023-05-16
Αξιολόγηση 5.00/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής borbiuk
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://t.me/bandcamp_hack
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/borbiuk/band-play
URL της Σελίδας Πολιτικής Απορρήτου https://www.privacypolicies.com/live/7da359f8-0b8e-490b-ad9f-8b0171c74027
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bandcamp Play",
    "version": "4.0.8",
    "description": "Automation of work with Bandcamp: autoplay, control by hotkeys and etc.",
    "host_permissions": [
        "https:\/\/bandcamp.com\/*",
        "https:\/\/*.bandcamp.com\/*"
    ],
    "permissions": [
        "tabs",
        "storage",
        "power"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "vendor.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/bandcamp.com\/*",
                "https:\/\/*.bandcamp.com\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Bandcamp play settings",
        "default_popup": ".\/popup.html",
        "default_icon": {
            "16": "assets\/logo-16.png",
            "32": "assets\/logo-32.png",
            "48": "assets\/logo-48.png",
            "128": "assets\/logo-128.png"
        }
    },
    "icons": {
        "16": "assets\/logo-16.png",
        "32": "assets\/logo-32.png",
        "48": "assets\/logo-48.png",
        "128": "assets\/logo-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/logo-128.png",
                "assets\/close.png",
                "assets\/keys\/key-0.png",
                "assets\/keys\/key-9.png",
                "assets\/keys\/key-B.png",
                "assets\/keys\/key-N.png",
                "assets\/keys\/key-M.png",
                "assets\/keys\/key-O.png",
                "assets\/keys\/key-L.png",
                "assets\/keys\/key-right.png",
                "assets\/keys\/key-left.png"
            ],
            "matches": [
                "https:\/\/bandcamp.com\/*",
                "https:\/\/*.bandcamp.com\/*"
            ]
        }
    ]
}