Google Music Media Keys

This extension allows control of Google Music through media keys

什麼是Google Music Media Keys?

Google Music Media Keys是由Jean-Lou Dupont (systemical)開發的Chrome擴展程式,該擴展的主要功能是“This extension allows control of Google Music through media keys”。

下載Google Music Media Keys擴展crx文件

下載Google Music Media Keys擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Use the mediakeys to control Google Music.

This simple extension supports the "play/pause", "previous track" & "next track" mediakeys of your keyboard as well as 2 configurable keys for the "thumb up" and "thumb down" buttons.

No more clicking around your browser tabs to quickly control your Google Music!

The keyboard keys configuration can be accessed through the menu (More Tools -> Extensions -> Keyboard Shortcuts (bottom of the screen).

Press the "play/pause" on the Google Music UI to activate the extension. This tells the extension which tab to focus on when multiple Google Music tabs are currently loaded.

Version 0.0.2: better play/pause status discovery when multiple google music tabs are present.                    

擴展基本資訊

名稱 Google Music Media Keys Google Music Media Keys
ID mjaohgecokhjlhhlcndcocmjollihmle
官方網址 https://chromewebstore.google.com/detail/google-music-media-keys/mjaohgecokhjlhhlcndcocmjollihmle
簡介 This extension allows control of Google Music through media keys
檔案大小 19.7 KB
安裝次數 73
目前版本 0.0.2
更新時間 2017-09-04
上架時間 2017-09-04
評分 5.00/5 共 4 次評分
開發者 Jean-Lou Dupont (systemical)
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Music Media Keys",
    "description": "This extension allows control of Google Music through media keys",
    "version": "0.0.2",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "https:\/\/play.google.com\/music\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.google.com\/music\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "doNextTrack": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "Next track",
            "global": true
        },
        "doPreviousTrack": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "Previous track",
            "global": true
        },
        "doPlayPause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "Play \/ Pause",
            "global": true
        },
        "doStop": {
            "suggested_key": {
                "default": "MediaStop"
            },
            "description": "Stop",
            "global": true
        },
        "doThumbUp": {
            "suggested_key": {
                "default": "Ctrl+Shift+9"
            },
            "description": "Thumb-Up current track",
            "global": true
        },
        "doThumbDown": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Thumb-Down current track",
            "global": true
        }
    }
}