Mixradio Web Player Hotkeys

Add keyboard shortcuts to control Mixrad.io music player from your browser

Mixradio Web Player Hotkeysとは何ですか?

Mixradio Web Player HotkeysはBill Hedworthによって開発されたChromeの拡張機能で、その主な機能は「Add keyboard shortcuts to control Mixrad.io music player from your browser」です。

拡張機能のスクリーンショット

screenshot

Mixradio Web Player Hotkeys拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Keyboard shortcuts to control Mixrad.io music player from your browser.

To configure: Extensions > Mixradio extension > Options > Configure HotKeys (You can also set them globally from this menu, if a shortcut isn't working it might already configured in your OS for something else)

Current defaults are:
* Play/Pause: "Media Play Pause"
* Next track: "Media Next"
* Like track: "Alt+Shift+P"
* Dislike track: "Alt+Shift+O"
* Toast Notification of currently playing track: No default
* Open mixrad.io in pinned tab: No default
* Start Mymix: No default (you need a logged in account)                    

拡張機能の基本情報

名前 Mixradio Web Player Hotkeys Mixradio Web Player Hotkeys
ID pmpjmciakkfogdpnohofddaedpdlebka
公式URL https://chrome.google.com/webstore/detail/mixradio-web-player-hotke/pmpjmciakkfogdpnohofddaedpdlebka
説明 Add keyboard shortcuts to control Mixrad.io music player from your browser
ファイルサイズ 76.31 KB
インストール数 27
現在のバージョン 0.1.6
最終更新日 2016-02-09
公開日 2016-02-08
評価 4.83/5 合計 6 レビュー
開発者 Bill Hedworth
支払い方法 free
拡張機能のウェブサイト https://github.com/Bigsy/mixradio-chrome-hotkeys
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mixradio Web Player Hotkeys",
    "description": "Add keyboard shortcuts to control Mixrad.io music player from your browser",
    "version": "0.1.6",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "incognito": "split",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mixrad.io\/*"
            ],
            "js": [
                "content.js",
                "jquery-2.2.0.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "commands": {
        "next": {
            "description": "Next track",
            "suggested_key": "MediaNextTrack"
        },
        "play-pause": {
            "description": "Play\/Pause",
            "suggested_key": "MediaPlayPause"
        },
        "like": {
            "description": "Like track",
            "suggested_key": "Alt+Shift+P"
        },
        "dislike": {
            "description": "Dislike track",
            "suggested_key": "Alt+Shift+O"
        },
        "pinned": {
            "description": "Open mixradio in pinned tab"
        },
        "mymix": {
            "description": "Start Mymix"
        },
        "current-toast": {
            "description": "Current playing track popup"
        }
    },
    "permissions": [
        "https:\/\/mixrad.io\/*",
        "notifications",
        "https:\/\/assets.mixrad.io\/*"
    ]
}