Use media keys to control Yousee Music

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

Was ist Use media keys to control Yousee Music?

Use media keys to control Yousee Music ist eine Chrome-Erweiterung, die von rolfba entwickelt wurde, und ihr Hauptmerkmal ist "Press Play/Stop/Next/Prev keys to control the playback of your current playlist".

Use media keys to control Yousee Music-Erweiterungs-CRX-Datei herunterladen

Laden Sie Use media keys to control Yousee Music-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Use media keys to control Yousee Music Use media keys to control Yousee Music
ID jhemjgkeiekljabdfenlinglfkhcfnbb
Offizielle URL https://chromewebstore.google.com/detail/use-media-keys-to-control/jhemjgkeiekljabdfenlinglfkhcfnbb
Beschreibung Press Play/Stop/Next/Prev keys to control the playback of your current playlist
Dateigröße 32.92 KB
Installationsanzahl 85
Aktuelle Version 1.6
Letztes Update 2016-12-08
Veröffentlichungsdatum 2016-12-08
Bewertung 3.20/5 Insgesamt 5 Bewertungen
Entwickler rolfba
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    }
}