Music Keys
Allows you to bind hotkeys for Google Music player
Was ist Music Keys?
Music Keys ist eine Chrome-Erweiterung, die von Asafh entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to bind hotkeys for Google Music player".
Erweiterungsscreenshots
Music Keys-Erweiterungs-CRX-Datei herunterladen
Laden Sie Music Keys-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Recent Changes: Fixed broken Next/Previous Track. Music Keys lets you bind hotkeys for Google Music actions: Default Commands: * Next Track: Ctrl+Shift+X * Previous Track: Ctrl+Shift+Z * Toggle Playback: Ctrl+Shift+A * Toggle Shuffle: Ctrl+Shift+S Clicking the extension button will focus the existing Google Music tab or open one if none. Please reload the existing Google Music table after installation if any. This extension is open source. Dual licensed under MIT and Apache 2.0 licenses. Source code: https://github.com/asafh/chrome-gmusic-keys We don't track any behavior or user data.
Grundlegende Informationen zur Erweiterung
Name | Music Keys |
ID | nlofnphgogmakkalciglfojiffgipgig |
Offizielle URL | https://chromewebstore.google.com/detail/music-keys/nlofnphgogmakkalciglfojiffgipgig |
Beschreibung | Allows you to bind hotkeys for Google Music player |
Dateigröße | 8.15 KB |
Installationsanzahl | 21 |
Aktuelle Version | 1.0.4 |
Letztes Update | 2016-04-21 |
Veröffentlichungsdatum | 2016-04-21 |
Bewertung | 4.00/5 Insgesamt 3 Bewertungen |
Entwickler | Asafh |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Music Keys", "version": "1.0.4", "description": "Allows you to bind hotkeys for Google Music player", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/music\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/play.google.com\/music\/listen", "tabs" ], "icons": { "128": "folder_music.png" }, "incognito": "split", "browser_action": { "default_icon": "folder_music.png", "default_title": "Music Keys" }, "manifest_version": 2, "commands": { "cmd-playPause": { "suggested_key": { "default": "Ctrl+Shift+A" }, "description": "Toggle playback" }, "cmd-next": { "suggested_key": { "default": "Ctrl+Shift+X" }, "description": "Next track" }, "cmd-prev": { "suggested_key": { "default": "Ctrl+Shift+Z" }, "description": "Previous track" }, "cmd-shuffle": { "suggested_key": { "default": "Ctrl+Shift+S" }, "description": "Shuffle on\/off" } } } |