Easy Play Music Hotkeys

This extensions allows you to set hotkeys for controlling Google Play Music.

Qu'est-ce que Easy Play Music Hotkeys ?

Easy Play Music Hotkeys est une extension Chrome développée par fergaljd, et sa fonction principale est "This extensions allows you to set hotkeys for controlling Google Play Music.".

Télécharger le fichier CRX de l'extension Easy Play Music Hotkeys

Téléchargez les fichiers d'extension Easy Play Music Hotkeys au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This very lightweight extension adds hotkeys to control basic Google Play Music streaming features. Hotkeys are implemented for Play/Pause (Alt-P), Next Track (Alt-Right) and volume controls (Alt-Up/Down). Keyboard shortcuts can be customised on the chrome://extensions page, through the Keyboard Shortcuts link.

Install this extension if you are looking for a simple way to control the Google Play Music streaming player with your keyboard.

Update: version 0.2 fixes volume controls.                    

Informations de Base sur l'Extension

Nom Easy Play Music Hotkeys Easy Play Music Hotkeys
ID akfgonaiibepjhbphlhadfiinkkibplg
URL Officiel https://chrome.google.com/webstore/detail/easy-play-music-hotkeys/akfgonaiibepjhbphlhadfiinkkibplg
Description This extensions allows you to set hotkeys for controlling Google Play Music.
Taille du Fichier 28.7 KB
Nombre d'Installations 34
Version Actuelle 0.2
Dernière Mise à Jour 2014-01-30
Date de Publication 2014-01-30
Développeur fergaljd
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Play Music Hotkeys",
    "description": "This extensions allows you to set hotkeys for controlling Google Play Music.",
    "version": "0.2",
    "browser_action": {
        "default_title": "Google Play Music Hotkeys",
        "default_icon": "play.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.google.com\/music\/*"
            ],
            "js": [
                "controls.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "next_track": {
            "suggested_key": {
                "default": "Alt+Right"
            },
            "description": "Skip to next track"
        },
        "play_pause": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Play\/Pause music"
        },
        "volume_up": {
            "suggested_key": {
                "default": "Alt+Up"
            },
            "description": "Raise volume"
        },
        "volume_down": {
            "suggested_key": {
                "default": "Alt+Down"
            },
            "description": "Lower volume"
        }
    }
}