Music Beta Skip controller

The Music Beta Skip simply exposes a Browser action button that will skip the current track if one is available or will open a new…

Music Beta Skip controllerคืออะไร?

Music Beta Skip controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MAD และคุณลักษณะหลักของมันคือ "The Music Beta Skip simply exposes a Browser action button that will skip the current track if one is available or will open a new…"

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

screenshot
screenshot

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

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

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

                        The Music Beta Skip simply exposes a Browser action button that will skip the current track if one is available or will open a new tab with the Music Beta Web App in it if none is already available.

This Music Beta Skip controller can be used side by side with the Music Beta Play/Pause Browser Action available here: https://chrome.google.com/webstore/detail/lblkffdkmmemjagfanapkgkogilikbad.

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 Skip controller Music Beta Skip controller
ID lfpilffkipfhpoccjdiebpdjbdmfpefg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/music-beta-skip-controlle/lfpilffkipfhpoccjdiebpdjbdmfpefg
คำอธิบาย The Music Beta Skip simply exposes a Browser action button that will skip the current track if one is available or will open a new…
ขนาดไฟล์ 32.4 KB
จำนวนการติดตั้ง 112
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2014-05-28
วันที่เผยแพร่ 2014-05-27
คะแนน 4.62/5 รวมทั้งหมด 26 คะแนน
ผู้พัฒนา MAD
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "logo-19x19.ico",
        "default_title": "Music Beta Skip controller",
        "name": "Skip"
    },
    "content_scripts": [
        {
            "js": [
                "play_state_notifier.js"
            ],
            "matches": [
                "*:\/\/play.google.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "skip-128x128.png",
        "48": "skip-48x48.png",
        "16": "skip-16x16.png"
    },
    "name": "Music Beta Skip controller",
    "permissions": [
        "tabs",
        "*:\/\/play.google.com\/*"
    ],
    "version": "1.0.5"
}