SpotOn

Upgrade your Spotify Web Player with SpotOn, and enjoy a completely customizable UX/UI redesign!

Τι είναι το SpotOn;

Το SpotOn είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Kami, και η κύρια λειτουργία του είναι "Upgrade your Spotify Web Player with SpotOn, and enjoy a completely customizable UX/UI redesign!".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        SpotOn enhances the user experience of Spotify Web Player.

## Update Log
Current Release: 3.0.2

The latest release, version 3.0.2, brings improvements such as adding missing variables, updated the version, removed a default feature, fixed a bug related to the white color in SpotOn.

For a comprehensive overview of the release, refer to the [Full GitHub Release Notes](https://github.com/SenpaiHunters/SpotOn/releases).

## Note end

Upon installing SpotOn, users receive a helpful introductory page for guidance. Should further assistance be required, support is available through messaging.

For in-depth updates, please visit our GitHub page at: https://github.com/SenpaiHunters/SpotOn/.

We prioritize the privacy of your data. Solely 'storage' values are retained to preserve your toggle and custom CSS preferences. Your data is securely stored by us, and SpotOn is both free and open source. For additional information on data collection, kindly refer to our [GitHub page:](https://github.com/SenpaiHunters/SpotOn/blob/Main/Private%20Policy.md).                    

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

Όνομα SpotOn SpotOn
ID hnbcgkmojpjmncmplcnefjnmcbckadff
Επίσημο URL https://chromewebstore.google.com/detail/spoton/hnbcgkmojpjmncmplcnefjnmcbckadff
Περιγραφή Upgrade your Spotify Web Player with SpotOn, and enjoy a completely customizable UX/UI redesign!
Μέγεθος Αρχείου 73.24 KB
Αριθμός Εγκαταστάσεων 46
Τρέχουσα Έκδοση 3.0.2
Τελευταία Ενημέρωση 2024-03-05
Ημερομηνία Δημοσίευσης 2023-09-04
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Kami
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/SenpaiHunters/SpotOn/tree/Main
Διεύθυνση URL της Σελίδας Βοήθειας https://discord.gg/9hqVqYDpj3
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/SenpaiHunters/SpotOn/blob/Main/Private%20Policy.md
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SpotOn",
    "version": "3.0.2",
    "description": "Upgrade your Spotify Web Player with SpotOn, and enjoy a completely customizable UX\/UI redesign!",
    "author": "Kami",
    "homepage_url": "https:\/\/github.com\/senpaihunters\/spoton",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "scripting",
        "tabs",
        "contextMenus",
        "declarativeContent",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/open.spotify.com\/*"
    ],
    "action": {
        "default_popup": "settings.html"
    },
    "commands": {
        "play-pause": {
            "description": "Play\/Pause",
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "global": true
        },
        "previous": {
            "description": "Previous Track",
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "global": true
        },
        "next": {
            "description": "Next Track",
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "global": true
        },
        "hide_sidebar": {
            "description": "Hide the Sidebar"
        },
        "hide_npb": {
            "description": "Hide the Now Playing Bar"
        },
        "open_spotify": {
            "description": "Open Spotify"
        },
        "shuffle": {
            "description": "Toggle Shuffle"
        },
        "repeat": {
            "description": "Toggle Repeat"
        },
        "like": {
            "description": "Like\/Dislike"
        },
        "seek-forward": {
            "description": "Seek Forward"
        },
        "seek-backward": {
            "description": "Seek Backward"
        },
        "volume-up": {
            "description": "Volume Up"
        },
        "volume-down": {
            "description": "Volume Down"
        },
        "volume-mute": {
            "description": "Toggle Mute"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "js\/translater\/appender.js"
            ]
        }
    ]
}