Music Beta Play/Pause controller

A browser action that will create a tab with the Music Beta Web App if none is already opened in the current browser window and…

Music Beta Play/Pause controllerคืออะไร?

Music Beta Play/Pause controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MAD และคุณลักษณะหลักของมันคือ "A browser action that will create a tab with the Music Beta Web App if none is already opened in the current browser window and…"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Music Beta Play/Pause controller

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

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

                        A browser action that will create a tab with the Music Beta Web App if none is already opened in the current browser window and Play/Pause it if it's there.

When Music Beta is already available in the same browser instance/profile (which may be in another window) as the browser action that is clicked on, then a play/pause event is sent to the Web App to start playing if it was in pause mode, or to pause if it was in play mode.

The icon shows a little play symbol (▷) in the top half when the Web App is ready to play, and a pause symbol (◫) when it is currently playing. The Music Beta icon is displayed naked otherwise.

The omnibox command prefix mc (for Music Controller) followed by  or  gives access to four commands 1) Skip (sk), 2) Restart (rs) 3) PlayPause (pp) and 4) Foreground (fg) to bring the Web App tab to the foreground. These commands are available in the suggest menu.

You might also be interested in getting the related Music Beta Skip controller here:
https://chrome.google.com/webstore/detail/lfpilffkipfhpoccjdiebpdjbdmfpefg

You can find more detailed user documention about the extentions here:
http://code.google.com/p/music-beta-controller/wiki/UserDocumentation

The code for these extensions is open source and available here:
http://code.google.com/p/music-beta-controller/

You can see what was added to individual releases here:
https://code.google.com/p/music-beta-controller/wiki/ReleaseNotes

You can file bugs and feature requests here:
http://code.google.com/p/music-beta-controller/issues/list

You can use this other group to discuss usage of these extensions:
http://groups.google.com/group/music-beta-controller-discuss

And you can register to this one for communicating with other users of these extensions:
http://groups.google.com/group/music-beta-controller-users                    

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

ชื่อ Music Beta Play/Pause controller Music Beta Play/Pause controller
ID lblkffdkmmemjagfanapkgkogilikbad
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/music-beta-playpause-cont/lblkffdkmmemjagfanapkgkogilikbad
คำอธิบาย A browser action that will create a tab with the Music Beta Web App if none is already opened in the current browser window and…
ขนาดไฟล์ 103 KB
จำนวนการติดตั้ง 445
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2014-05-28
วันที่เผยแพร่ 2014-05-27
คะแนน 4.44/5 รวมทั้งหมด 66 คะแนน
ผู้พัฒนา MAD
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Music Beta Play\/Pause controller",
    "version": "1.0.5",
    "icons": {
        "16": "logo-16x16.png",
        "48": "logo-48x48.png",
        "128": "logo-128x128.png"
    },
    "browser_action": {
        "name": "Play\/Pause",
        "default_icon": "logo-19x19.ico",
        "default_title": "Play\/Pause controller"
    },
    "omnibox": {
        "keyword": "mc"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.google.com\/*"
            ],
            "js": [
                "play_state_notifier.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/play.google.com\/*"
    ]
}