Easy Play Music Hotkeys

This extensions allows you to set hotkeys for controlling Google Play Music.

Easy Play Music Hotkeysคืออะไร?

Easy Play Music Hotkeys เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fergaljd และคุณลักษณะหลักของมันคือ "This extensions allows you to set hotkeys for controlling Google Play Music."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Easy Play Music Hotkeys

ดาวน์โหลดไฟล์ส่วนขยาย Easy Play Music Hotkeys ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This very lightweight extension adds hotkeys to control basic Google Play Music streaming features. Hotkeys are implemented for Play/Pause (Alt-P), Next Track (Alt-Right) and volume controls (Alt-Up/Down). Keyboard shortcuts can be customised on the chrome://extensions page, through the Keyboard Shortcuts link.

Install this extension if you are looking for a simple way to control the Google Play Music streaming player with your keyboard.

Update: version 0.2 fixes volume controls.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Easy Play Music Hotkeys Easy Play Music Hotkeys
ID akfgonaiibepjhbphlhadfiinkkibplg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/easy-play-music-hotkeys/akfgonaiibepjhbphlhadfiinkkibplg
คำอธิบาย This extensions allows you to set hotkeys for controlling Google Play Music.
ขนาดไฟล์ 28.7 KB
จำนวนการติดตั้ง 34
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2014-01-30
วันที่เผยแพร่ 2014-01-30
ผู้พัฒนา fergaljd
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Play Music Hotkeys",
    "description": "This extensions allows you to set hotkeys for controlling Google Play Music.",
    "version": "0.2",
    "browser_action": {
        "default_title": "Google Play Music Hotkeys",
        "default_icon": "play.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.google.com\/music\/*"
            ],
            "js": [
                "controls.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "next_track": {
            "suggested_key": {
                "default": "Alt+Right"
            },
            "description": "Skip to next track"
        },
        "play_pause": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Play\/Pause music"
        },
        "volume_up": {
            "suggested_key": {
                "default": "Alt+Up"
            },
            "description": "Raise volume"
        },
        "volume_down": {
            "suggested_key": {
                "default": "Alt+Down"
            },
            "description": "Lower volume"
        }
    }
}