Music Remote

Controls music players.

Music Remoteคืออะไร?

Music Remote เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jacko และคุณลักษณะหลักของมันคือ "Controls music players."

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

screenshot
screenshot
screenshot

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

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

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

                        The Music Remote extension lets you define global chrome hotkeys to control the features of some popular browser music players from anywhere.

The players currently supported are:
Amazon Cloud Player
Google Play
Grooveshark
Pandora
Soundcloud
Youtube*
(*Requires the HTML version)

The controls include toggling playing, going to the next or previous song, and navigating to and from the player's tab.  

Additional functionality may be added in the future, like the implementation of disliking or saving songs that exists for the Grooveshark player.

The extension is very light-weight: no resources will be used unless a hotkey is pressed, and that memory will be freed immediately after.


This project is open source and built to allow for quick integration of other players.  If you have a feature request, a bug to report, or wish to contribute to the project, check out the GitHub page:  https://github.com/jackphace/Music-Remote                    

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

ชื่อ Music Remote Music Remote
ID gogdhdhpphgkoffjcljfoffebpoknfdm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/music-remote/gogdhdhpphgkoffjcljfoffebpoknfdm
คำอธิบาย Controls music players.
ขนาดไฟล์ 105 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2013-12-31
วันที่เผยแพร่ 2013-12-31
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา jacko
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jackphace/Music-Remote
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Music Remote",
    "version": "1.0.4",
    "description": "Controls music players.",
    "icons": {
        "128": "icon_128.png"
    },
    "manifest_version": 2,
    "commands": {
        "remote-chord": {
            "suggested_key": {
                "default": "Shift+Alt+D",
                "windows": "Shift+Alt+D"
            },
            "description": "Chord shortcut"
        },
        "remote-previous": {
            "suggested_key": {
                "default": "Shift+Alt+Q",
                "windows": "Shift+Alt+Q"
            },
            "description": "Previous song"
        },
        "remote-next": {
            "suggested_key": {
                "default": "Shift+Alt+W",
                "windows": "Shift+Alt+W"
            },
            "description": "Next song"
        },
        "remote-toggle": {
            "suggested_key": {
                "default": "Shift+Alt+E",
                "windows": "Shift+Alt+E"
            },
            "description": "Toggle play\/pause"
        }
    },
    "background": {
        "scripts": [
            "jquery-1.10.2.min.js",
            "remote.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "activeTab",
        "*:\/\/soundcloud.com\/*",
        "*:\/\/grooveshark.com\/*",
        "*:\/\/www.youtube.com\/*",
        "*:\/\/www.pandora.com\/*",
        "*:\/\/www.amazon.com\/*",
        "*:\/\/play.google.com\/*"
    ],
    "web_accessible_resources": [
        "jquery-1.10.2.min.js"
    ]
}