Music Keys

Allows you to bind hotkeys for Google Music player

什么是Music Keys?

Music Keys是由Asafh开发的Chrome扩展程序,该扩展的主要功能是“Allows you to bind hotkeys for Google Music player”。

扩展截图

screenshot
screenshot

下载Music Keys扩展crx文件

下载Music Keys扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Recent Changes:
Fixed broken Next/Previous Track.

Music Keys lets you bind hotkeys for Google Music actions:
Default Commands:  
* Next Track: Ctrl+Shift+X  
* Previous Track: Ctrl+Shift+Z  
* Toggle Playback: Ctrl+Shift+A  
* Toggle Shuffle: Ctrl+Shift+S  

Clicking the extension button will focus the existing Google Music tab or open one if none.

Please reload the existing Google Music table after installation if any.


This extension is open source. Dual licensed under MIT and Apache 2.0 licenses.
Source code: https://github.com/asafh/chrome-gmusic-keys  
We don't track any behavior or user data.                    

扩展基本信息

名称 Music Keys Music Keys
ID nlofnphgogmakkalciglfojiffgipgig
官方URL https://chromewebstore.google.com/detail/music-keys/nlofnphgogmakkalciglfojiffgipgig
简介 Allows you to bind hotkeys for Google Music player
文件大小 8.15 KB
安装次数 21
当前版本 1.0.4
更新时间 2016-04-21
上架时间 2016-04-21
评分 4.00/5 共3次评分
开发者 Asafh
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Music Keys",
    "version": "1.0.4",
    "description": "Allows you to bind hotkeys for Google Music player",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.google.com\/music\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/play.google.com\/music\/listen",
        "tabs"
    ],
    "icons": {
        "128": "folder_music.png"
    },
    "incognito": "split",
    "browser_action": {
        "default_icon": "folder_music.png",
        "default_title": "Music Keys"
    },
    "manifest_version": 2,
    "commands": {
        "cmd-playPause": {
            "suggested_key": {
                "default": "Ctrl+Shift+A"
            },
            "description": "Toggle playback"
        },
        "cmd-next": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Next track"
        },
        "cmd-prev": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z"
            },
            "description": "Previous track"
        },
        "cmd-shuffle": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            },
            "description": "Shuffle on\/off"
        }
    }
}