Use media keys to control Yousee Music

Press Play/Stop/Next/Prev keys to control the playback of your current playlist

Use media keys to control Yousee Music란 무엇입니까?

Use media keys to control Yousee Music은(는) rolfba에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Press Play/Stop/Next/Prev keys to control the playback of your current playlist"입니다.

Use media keys to control Yousee Music 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Enables media keys to be used while listening to music on musik.yousee.dk

Version 1.6 fixes support of the latest layout changes on yousee musik.                    

확장 프로그램 기본 정보

이름 Use media keys to control Yousee Music Use media keys to control Yousee Music
ID jhemjgkeiekljabdfenlinglfkhcfnbb
공식 URL https://chromewebstore.google.com/detail/use-media-keys-to-control/jhemjgkeiekljabdfenlinglfkhcfnbb
설명 Press Play/Stop/Next/Prev keys to control the playback of your current playlist
파일 크기 32.92 KB
설치 횟수 85
현재 버전 1.6
최근 업데이트 2016-12-08
출시 날짜 2016-12-08
평점 3.20/5 총 5 개의 평점
개발자 rolfba
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Use media keys to control Yousee Music",
    "description": "Press Play\/Stop\/Next\/Prev keys to control the playback of your current playlist",
    "version": "1.6",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/musik.yousee.dk\/*",
                "http:\/\/musik.youseeplay.dk\/*",
                "https:\/\/musik.yousee.dk\/*",
                "https:\/\/musik.youseeplay.dk\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "youseeMusic.js"
            ]
        }
    ],
    "commands": {
        "Play\/Pause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "Play\/Pause current song"
        },
        "NextSong": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "Jump to next song on playlist"
        },
        "PrevSong": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "Jump to previous song on playlist"
        }
    }
}