Mixradio Web Player Hotkeys

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

Mixradio Web Player Hotkeysคืออะไร?

Mixradio Web Player Hotkeys เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bill Hedworth และคุณลักษณะหลักของมันคือ "Add keyboard shortcuts to control Mixrad.io music player from your browser"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mixradio Web Player Hotkeys

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
    ]
}