Music Keys
Allows you to bind hotkeys for Google Music player
Music Keys란 무엇입니까?
Music Keys은(는) Asafh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to bind hotkeys for Google Music player"입니다.
확장 프로그램 스크린샷
Music Keys 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Music Keys |
ID | nlofnphgogmakkalciglfojiffgipgig |
공식 URL | https://chromewebstore.google.com/detail/music-keys/nlofnphgogmakkalciglfojiffgipgig |
설명 | Allows you to bind hotkeys for Google Music player |
파일 크기 | 8.15 KB |
설치 횟수 | 21 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2016-04-21 |
출시 날짜 | 2016-04-21 |
평점 | 4.00/5 총 3 개의 평점 |
개발자 | Asafh |
결제 유형 | free |
지원되는 언어 | 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" } } } |