Easy Play Music Hotkeys

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

Easy Play Music Hotkeysとは何ですか?

Easy Play Music Hotkeysはfergaljdによって開発されたChromeの拡張機能で、その主な機能は「This extensions allows you to set hotkeys for controlling Google Play Music.」です。

Easy Play Music Hotkeys拡張機能のCRXファイルをダウンロード

Easy Play Music Hotkeys拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Easy Play Music Hotkeys Easy Play Music Hotkeys
ID akfgonaiibepjhbphlhadfiinkkibplg
公式URL https://chrome.google.com/webstore/detail/easy-play-music-hotkeys/akfgonaiibepjhbphlhadfiinkkibplg
説明 This extensions allows you to set hotkeys for controlling Google Play Music.
ファイルサイズ 28.7 KB
インストール数 34
現在のバージョン 0.2
最終更新日 2014-01-30
公開日 2014-01-30
開発者 fergaljd
支払い方法 free
対応言語 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"
        }
    }
}