Easy Play Music Hotkeys
This extensions allows you to set hotkeys for controlling Google Play Music.
什麼是Easy Play Music Hotkeys?
Easy Play Music Hotkeys是由fergaljd開發的Chrome擴展程式,該擴展的主要功能是“This extensions allows you to set hotkeys for controlling Google Play Music.”。
下載Easy Play Music Hotkeys擴展crx文件
下載Easy Play Music Hotkeys擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This very lightweight extension adds hotkeys to control basic Google Play Music streaming features. Hotkeys are implemented for Play/Pause (Alt-P), Next Track (Alt-Right) and volume controls (Alt-Up/Down). Keyboard shortcuts can be customised on the chrome://extensions page, through the Keyboard Shortcuts link. Install this extension if you are looking for a simple way to control the Google Play Music streaming player with your keyboard. Update: version 0.2 fixes volume controls.
擴展基本資訊
名稱 | |
ID | akfgonaiibepjhbphlhadfiinkkibplg |
官方網址 | https://chrome.google.com/webstore/detail/easy-play-music-hotkeys/akfgonaiibepjhbphlhadfiinkkibplg |
簡介 | This extensions allows you to set hotkeys for controlling Google Play Music. |
檔案大小 | 28.7 KB |
安裝次數 | 34 |
目前版本 | 0.2 |
更新時間 | 2014-01-30 |
上架時間 | 2014-01-30 |
開發者 | fergaljd |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Easy Play Music Hotkeys", "description": "This extensions allows you to set hotkeys for controlling Google Play Music.", "version": "0.2", "browser_action": { "default_title": "Google Play Music Hotkeys", "default_icon": "play.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/music\/*" ], "js": [ "controls.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs" ], "commands": { "next_track": { "suggested_key": { "default": "Alt+Right" }, "description": "Skip to next track" }, "play_pause": { "suggested_key": { "default": "Alt+P" }, "description": "Play\/Pause music" }, "volume_up": { "suggested_key": { "default": "Alt+Up" }, "description": "Raise volume" }, "volume_down": { "suggested_key": { "default": "Alt+Down" }, "description": "Lower volume" } } } |