Spotify Web Player Hotkeys
Add keyboard shortcuts to control playback in Spotify Web.
Τι είναι το Spotify Web Player Hotkeys;
Το Spotify Web Player Hotkeys είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Alexandre Macabies, και η κύρια λειτουργία του είναι "Add keyboard shortcuts to control playback in Spotify Web.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Spotify Web Player Hotkeys
Λήψη αρχείων επέκτασης Spotify Web Player Hotkeys σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Adds the following default keyboard shortcuts to open.spotify.com: Play/Pause media key: play, pause Previous media key: previous track Next media key: next track There is no default shortcut, but you can also bind keys for: Toggle shuffle Toggle repeat (once, all, disabled) Toggle song like Volume up / down / mute Seek backward and forward in both songs and podcasts You can customize these shortcuts and make them global hotkeys (not just while Chrome is in focus) by opening chrome://extensions/shortcuts. Warning: Chrome/Chromium is known to not correctly register hotkeys after you've changed them in chrome://extensions/shortcuts. Please restart your browser by visiting chrome://restart after changes to shortcuts/hotkeys if you experience issues. This extension relies on the HTML/CSS structure of the website. Spotify might break it by changing their frontend. Please report issues by clicking on the Support link. WHAT'S NEW? * Version 1.3.1: Add new shortcut that either opens Spotify or cycles through home, search and queue pages. Add "interaction required" warning dialog. * Version 1.2.1: Fix volume slider not working. * Version 1.2.0: Make seek shortcuts work for songs as well as podcasts * Version 1.1.0: Add shortcuts for volume up / down / mute. * Version 1.0.0: Migrate to Manifest V3 so the extension remains functional after 2022. Add a workaround for the "Spotify Lyrics" third-party extension. * Version 0.6.2: Fix many broken buttons caused by a revamp of the toolbar design. * Version 0.6.1: Fix broken "like". * Version 0.6.0: Add short on-click animation; add Podcast seek shortcuts; fix broken "repeat" button. * Version 0.5.1: Add translations. * Version 0.5.0: Fix broken "repeat". * Version 0.4.0: Fix broken "next", "like", "repeat" and "shuffle". * Version 0.3.0: Fix broken "play/pause" and "next".
Βασικές Πληροφορίες Επέκτασης
Όνομα | Spotify Web Player Hotkeys |
ID | pdcbjjmgfakcbbchppeemlfpfgkdmjji |
Επίσημο URL | https://chromewebstore.google.com/detail/spotify-web-player-hotkey/pdcbjjmgfakcbbchppeemlfpfgkdmjji |
Περιγραφή | Add keyboard shortcuts to control playback in Spotify Web. |
Μέγεθος Αρχείου | 24.11 KB |
Αριθμός Εγκαταστάσεων | 5,034 |
Τρέχουσα Έκδοση | 1.3.1 |
Τελευταία Ενημέρωση | 2023-08-28 |
Ημερομηνία Δημοσίευσης | 2020-05-30 |
Αξιολόγηση | 4.58/5 Συνολικά 62 Αξιολογήσεις |
Προγραμματιστής | Alexandre Macabies |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/zopieux/spotify-hotkeys |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/zopieux/spotify-hotkeys/issues |
Υποστηριζόμενες Γλώσσες | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_application_title__", "description": "__MSG_application_description__", "version": "1.3.1", "default_locale": "en", "manifest_version": 3, "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "service_worker": "background.js" }, "action": [], "commands": { "play-pause": { "description": "__MSG_short_play_pause__", "suggested_key": { "default": "MediaPlayPause" }, "global": true }, "previous": { "description": "__MSG_short_previous__", "suggested_key": { "default": "MediaPrevTrack" }, "global": true }, "next": { "description": "__MSG_short_next__", "suggested_key": { "default": "MediaNextTrack" }, "global": true }, "shuffle": { "description": "__MSG_short_shuffle__", "global": true }, "repeat": { "description": "__MSG_short_repeat__", "global": true }, "like": { "description": "__MSG_short_like__", "global": true }, "seek-forward": { "description": "__MSG_short_seek_forward__", "global": true }, "seek-backward": { "description": "__MSG_short_seek_backward__", "global": true }, "volume-up": { "description": "__MSG_volume_up__", "global": true }, "volume-down": { "description": "__MSG_volume_down__", "global": true }, "volume-mute": { "description": "__MSG_volume_mute__", "global": true }, "queue-search": { "description": "__MSG_queue_search__", "global": true } }, "permissions": [ "scripting", "storage" ], "host_permissions": [ "https:\/\/open.spotify.com\/" ], "web_accessible_resources": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "resources": [ "web_accessible\/checkPageInteraction.js", "web_accessible\/logo.svg" ] } ] } |