Bandcamp Volume Control

Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.

Τι είναι το Bandcamp Volume Control;

Το Bandcamp Volume Control είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον xnaas, και η κύρια λειτουργία του είναι "Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.".

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

screenshot

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

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

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

                        This extension adds a volume slider to album and song pages on the bandcamp domain and some bandcamp sites using custom domains (such as music.monstercat.com). See screenshots for examples.

Original extension: https://addons.mozilla.org/en-US/firefox/addon/bandcamp-player-volume-control/

Original GitLab repo: https://gitlab.com/markoooo/bandcamp-volume-control

This extension's github repo: https://github.com/xnaas/bcvc                    

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

Όνομα Bandcamp Volume Control Bandcamp Volume Control
ID pbbndlbppenfhgnkkcmkcmeodbfkgimf
Επίσημο URL https://chrome.google.com/webstore/detail/bandcamp-volume-control/pbbndlbppenfhgnkkcmkcmeodbfkgimf
Περιγραφή Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.
Μέγεθος Αρχείου 8.22 KB
Αριθμός Εγκαταστάσεων 618
Τρέχουσα Έκδοση 0.2.7
Τελευταία Ενημέρωση 2021-01-06
Ημερομηνία Δημοσίευσης 2021-01-02
Αξιολόγηση 4.50/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής xnaas
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/xnaas/bcvc
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/xnaas/bcvc/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bandcamp Volume Control",
    "description": "Adds a volume slider to bandcamp album\/song pages on the official bandcamp domain and some bandcamp sites with custom domains.",
    "version": "0.2.7",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bandcamp.com\/*",
                "https:\/\/music.monstercat.com\/*",
                "https:\/\/shop.attackthemusic.com\/*",
                "https:\/\/listen.20buckspin.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ]
}