Use media keys to control Yousee Music

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

What is Use media keys to control Yousee Music?

Use media keys to control Yousee Music is a Chrome extension developed by rolfba, and its main feature is "Press Play/Stop/Next/Prev keys to control the playback of your current playlist".

Download Use media keys to control Yousee Music Extension CRX File

Download Use media keys to control Yousee Music extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Use media keys to control Yousee Music Use media keys to control Yousee Music
ID jhemjgkeiekljabdfenlinglfkhcfnbb
Official URL https://chromewebstore.google.com/detail/use-media-keys-to-control/jhemjgkeiekljabdfenlinglfkhcfnbb
Description Press Play/Stop/Next/Prev keys to control the playback of your current playlist
File Size 32.92 KB
Installation Count 85
Current Version 1.6
Last Updated 2016-12-08
Publish Date 2016-12-08
Rating 3.20/5 Total 5 Ratings
Developer rolfba
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    }
}