Music Keys

Adds global shortcuts for play/pause, next, previous to music/videos in YouTube, gaana, SoundCloud, 8tracks.

什么是Music Keys?

Music Keys是由shubham开发的Chrome扩展程序,该扩展的主要功能是“Adds global shortcuts for play/pause, next, previous to music/videos in YouTube, gaana, SoundCloud, 8tracks.”。

下载Music Keys扩展crx文件

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

扩展使用说明

                        Plays/pauses YouTube videos, gaana, SoundCloud, 8tracks. Helpful when you are listening music and working on some other chrome tab, or chrome is in background. Can only play/pause 1st tab out of multiple tabs running, shortcut is "Ctrl+shift+9", global shortcut. You can also get shortcuts from "keyboard shortcuts" in "chrome://extensions".                    

扩展基本信息

名称 Music Keys Music Keys
ID odmndmgmfakieianebiibnoegimffpjh
官方URL https://chromewebstore.google.com/detail/music-keys/odmndmgmfakieianebiibnoegimffpjh
简介 Adds global shortcuts for play/pause, next, previous to music/videos in YouTube, gaana, SoundCloud, 8tracks.
文件大小 148 KB
安装次数 81
当前版本 3.1
更新时间 2018-01-14
上架时间 2018-01-14
评分 4.67/5 共21次评分
开发者 shubham
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/shub30may92/Youtube-Chrome-Extension
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Music Keys",
    "description": "Adds global shortcuts for play\/pause, next, previous to music\/videos in YouTube, gaana, SoundCloud, 8tracks.",
    "version": "3.1",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "background",
        "https:\/\/www.youtube.com\/",
        "https:\/\/gaana.com\/",
        "https:\/\/soundcloud.com\/",
        "http:\/\/8tracks.com\/",
        "https:\/\/play.spotify.com\/"
    ],
    "commands": {
        "play_previous": {
            "suggested_key": {
                "default": "Ctrl+Shift+8",
                "linux": "Ctrl+Shift+8",
                "mac": "Command+Shift+8"
            },
            "description": "Play previous",
            "global": true
        },
        "play_pause": {
            "suggested_key": {
                "default": "Ctrl+Shift+9",
                "mac": "Command+Shift+9",
                "linux": "Ctrl+Shift+9"
            },
            "description": "Play\/pause",
            "global": true
        },
        "play_next": {
            "suggested_key": {
                "default": "Ctrl+Shift+0",
                "linux": "Ctrl+Shift+0",
                "mac": "Command+Shift+0"
            },
            "description": "Play Next",
            "global": true
        },
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+Y",
                "linux": "Alt+Y",
                "mac": "Alt+Y"
            },
            "description": "Play\/pause"
        }
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}