Music Keys

Allows you to bind hotkeys for Google Music player

Music Keysคืออะไร?

Music Keys เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Asafh และคุณลักษณะหลักของมันคือ "Allows you to bind hotkeys for Google Music player"

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

screenshot
screenshot

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

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

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

                        Recent Changes:
Fixed broken Next/Previous Track.

Music Keys lets you bind hotkeys for Google Music actions:
Default Commands:  
* Next Track: Ctrl+Shift+X  
* Previous Track: Ctrl+Shift+Z  
* Toggle Playback: Ctrl+Shift+A  
* Toggle Shuffle: Ctrl+Shift+S  

Clicking the extension button will focus the existing Google Music tab or open one if none.

Please reload the existing Google Music table after installation if any.


This extension is open source. Dual licensed under MIT and Apache 2.0 licenses.
Source code: https://github.com/asafh/chrome-gmusic-keys  
We don't track any behavior or user data.                    

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

ชื่อ Music Keys Music Keys
ID nlofnphgogmakkalciglfojiffgipgig
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/music-keys/nlofnphgogmakkalciglfojiffgipgig
คำอธิบาย Allows you to bind hotkeys for Google Music player
ขนาดไฟล์ 8.15 KB
จำนวนการติดตั้ง 21
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2016-04-21
วันที่เผยแพร่ 2016-04-21
คะแนน 4.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Asafh
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Music Keys",
    "version": "1.0.4",
    "description": "Allows you to bind hotkeys for Google Music player",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.google.com\/music\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/play.google.com\/music\/listen",
        "tabs"
    ],
    "icons": {
        "128": "folder_music.png"
    },
    "incognito": "split",
    "browser_action": {
        "default_icon": "folder_music.png",
        "default_title": "Music Keys"
    },
    "manifest_version": 2,
    "commands": {
        "cmd-playPause": {
            "suggested_key": {
                "default": "Ctrl+Shift+A"
            },
            "description": "Toggle playback"
        },
        "cmd-next": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Next track"
        },
        "cmd-prev": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z"
            },
            "description": "Previous track"
        },
        "cmd-shuffle": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            },
            "description": "Shuffle on\/off"
        }
    }
}