Mixradio Web Player Hotkeys

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

Mixradio Web Player Hotkeys là gì?

Mixradio Web Player Hotkeys là một tiện ích mở rộng Chrome được phát triển bởi Bill Hedworth, và tính năng chính của nó là "Add keyboard shortcuts to control Mixrad.io music player from your browser".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mixradio Web Player Hotkeys

Tải xuống các tệp mở rộng Mixradio Web Player Hotkeys dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mixradio Web Player Hotkeys Mixradio Web Player Hotkeys
ID pmpjmciakkfogdpnohofddaedpdlebka
URL Chính Thức https://chrome.google.com/webstore/detail/mixradio-web-player-hotke/pmpjmciakkfogdpnohofddaedpdlebka
Mô tả Add keyboard shortcuts to control Mixrad.io music player from your browser
Kích Thước Tệp 76.31 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 0.1.6
Cập Nhật Lần Cuối 2016-02-09
Ngày Phát Hành 2016-02-08
Đánh Giá 4.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Bill Hedworth
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Bigsy/mixradio-chrome-hotkeys
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}