Mixradio Web Player Hotkeys
Add keyboard shortcuts to control Mixrad.io music player from your browser
Mixradio Web Player Hotkeys란 무엇입니까?
Mixradio Web Player Hotkeys은(는) Bill Hedworth에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add keyboard shortcuts to control Mixrad.io music player from your browser"입니다.
확장 프로그램 스크린샷
Mixradio Web Player Hotkeys 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Keyboard shortcuts to control Mixrad.io music player from your browser. To configure: Extensions > Mixradio extension > Options > Configure HotKeys (You can also set them globally from this menu, if a shortcut isn't working it might already configured in your OS for something else) Current defaults are: * Play/Pause: "Media Play Pause" * Next track: "Media Next" * Like track: "Alt+Shift+P" * Dislike track: "Alt+Shift+O" * Toast Notification of currently playing track: No default * Open mixrad.io in pinned tab: No default * Start Mymix: No default (you need a logged in account)
확장 프로그램 기본 정보
이름 | |
ID | pmpjmciakkfogdpnohofddaedpdlebka |
공식 URL | https://chrome.google.com/webstore/detail/mixradio-web-player-hotke/pmpjmciakkfogdpnohofddaedpdlebka |
설명 | Add keyboard shortcuts to control Mixrad.io music player from your browser |
파일 크기 | 76.31 KB |
설치 횟수 | 27 |
현재 버전 | 0.1.6 |
최근 업데이트 | 2016-02-09 |
출시 날짜 | 2016-02-08 |
평점 | 4.83/5 총 6 개의 평점 |
개발자 | Bill Hedworth |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Bigsy/mixradio-chrome-hotkeys |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mixradio Web Player Hotkeys", "description": "Add keyboard shortcuts to control Mixrad.io music player from your browser", "version": "0.1.6", "manifest_version": 2, "icons": { "128": "icon.png" }, "incognito": "split", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/mixrad.io\/*" ], "js": [ "content.js", "jquery-2.2.0.min.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "chrome_style": true }, "commands": { "next": { "description": "Next track", "suggested_key": "MediaNextTrack" }, "play-pause": { "description": "Play\/Pause", "suggested_key": "MediaPlayPause" }, "like": { "description": "Like track", "suggested_key": "Alt+Shift+P" }, "dislike": { "description": "Dislike track", "suggested_key": "Alt+Shift+O" }, "pinned": { "description": "Open mixradio in pinned tab" }, "mymix": { "description": "Start Mymix" }, "current-toast": { "description": "Current playing track popup" } }, "permissions": [ "https:\/\/mixrad.io\/*", "notifications", "https:\/\/assets.mixrad.io\/*" ] } |