Spotty Web Remote Control
Spotify notifications, hotkeys and playlists everywhere on your desktop
Τι είναι το Spotty Web Remote Control;
Το Spotty Web Remote Control είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον sebcej, και η κύρια λειτουργία του είναι "Spotify notifications, hotkeys and playlists everywhere on your desktop".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Spotty Web Remote Control
Λήψη αρχείων επέκτασης Spotty Web Remote Control σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension allows to manage the Spotify web player when is not in focus. You can rapidly change songs or search for artists without using the web player page. The interface is also detachable to an independent popup that can be dragged and used without losing context of other apps. - Additionally: * Song notifications * Add song to favorites * Focus to playing tab * Mute button * Shuffle & repeat toggles - Shortcuts [changeable] - Prev: Ctrl+Shift+7 Play/Pause: Ctrl+Shift+8 Next: Ctrl+Shift+9 The shortcuts are global and can be used outside chrome To change them go to the bottom of your extensions page and click on "keyboard shortcuts" (recommended). Don't need notifications? Just open the popup and click on eye icon to disable them! RELEASES -- v 1.3.9 * Maintenance update. Upgraded libraries and hooks v 1.3.8 * Fixed add to favorites v 1.3.7 * Search compatibility update * Fixed missing artist in lists * Fixed mute button edge cases v 1.3.6 * Fixed search v 1.3.5 * Fixed fonts on windows OS * Fixed issue for favorite songs list v1.3.4 * Search behavior enhanced * Performance improvements * Fixes on detached popup on windows v1.3.3 * Search compatibility update v1.3.2 * Added return to top * Edge cases fixed v1.3.1 * Some fixes for edge cases * UI & performance improved v1.3.0 * Supported song search * Supported mute functionality * Minor fixes [...] This extension is not affiliated in any way to Spotify.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Spotty Web Remote Control |
ID | jcaebomgnpplnkgdbgeiifjafbclkiam |
Επίσημο URL | https://chromewebstore.google.com/detail/spotty-web-remote-control/jcaebomgnpplnkgdbgeiifjafbclkiam |
Περιγραφή | Spotify notifications, hotkeys and playlists everywhere on your desktop |
Μέγεθος Αρχείου | 184 KB |
Αριθμός Εγκαταστάσεων | 957 |
Τρέχουσα Έκδοση | 1.4.0 |
Τελευταία Ενημέρωση | 2019-10-23 |
Ημερομηνία Δημοσίευσης | 2019-10-23 |
Αξιολόγηση | 4.38/5 Συνολικά 34 Αξιολογήσεις |
Προγραμματιστής | sebcej |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spotty Web Remote Control", "short_name": "Spotty Web Remote", "description": "Spotify notifications, hotkeys and playlists everywhere on your desktop", "version": "1.4.0", "minimum_chrome_version": "30", "permissions": [ "*:\/\/*.spotify.com\/*", "storage", "notifications" ], "background": { "scripts": [ "\/dist\/service.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.spotify.com\/*" ], "js": [ "\/dist\/content.js" ], "all_frames": false } ], "commands": { "nextKey": { "suggested_key": { "default": "Ctrl+Shift+9" }, "description": "Next", "global": true }, "playPauseKey": { "suggested_key": { "default": "Ctrl+Shift+8" }, "description": "Play\/Pause", "global": true }, "prevKey": { "suggested_key": { "default": "Ctrl+Shift+7" }, "description": "Prev", "global": true }, "addAsFav": { "description": "Add current song as favorite" }, "openPopup": { "description": "Open Remote popup", "global": true }, "showCurrSong": { "description": "Show current song" }, "focusPlayer": { "description": "Focus to the player page" } }, "icons": { "128": "\/assets\/img\/web_player_remote_logo.png" }, "browser_action": { "default_popup": "\/popup.html", "default_title": "Spotify Web Remote" } } |