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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } } } |