Yousee music shortcuts
Yousee music shortcuts for your music needs. Use the media keys to control the music.
Yousee music shortcuts란 무엇입니까?
Yousee music shortcuts은(는) martinkors에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Yousee music shortcuts for your music needs. Use the media keys to control the music."입니다.
확장 프로그램 스크린샷
Yousee music shortcuts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is an app for Google Chrome that enables you to use your media keys for controlling Yousee Music
확장 프로그램 기본 정보
이름 | |
ID | eaclcdhgjceodeecmkolehodplhifmob |
공식 URL | https://chromewebstore.google.com/detail/yousee-music-shortcuts/eaclcdhgjceodeecmkolehodplhifmob |
설명 | Yousee music shortcuts for your music needs. Use the media keys to control the music. |
파일 크기 | 8.74 KB |
설치 횟수 | 232 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2019-01-23 |
출시 날짜 | 2019-01-23 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | martinkors |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,da |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_chrome_extension_name__", "version": "1.0.2", "description": "__MSG_chrome_extension_description__", "default_locale": "en", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": { "16": "icons\/icon16.png", "24": "icons\/icon24.png", "32": "icons\/icon32.png" }, "default_title": "__MSG_chrome_extension_name__" }, "author": "martinkors", "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/musik.yousee.dk\/*" ], "js": [ "contentscript.js" ] } ], "commands": { "prev": { "suggested_key": { "default": "MediaPrevTrack", "mac": "MediaPrevTrack" }, "description": "__MSG_chrome_extension_previous__", "global": true }, "play-pause": { "suggested_key": { "default": "MediaPlayPause", "mac": "MediaPlayPause" }, "description": "__MSG_chrome_extension_play__", "global": true }, "next": { "suggested_key": { "default": "MediaNextTrack", "mac": "MediaNextTrack" }, "description": "__MSG_chrome_extension_next__", "global": true }, "stop": { "suggested_key": { "default": "MediaStop", "mac": "MediaStop" }, "description": "__MSG_chrome_extension_play__", "global": true } }, "background": { "scripts": [ "background.js" ] } } |