Plauser

A Chrome extension that allows you to play/pause your current playing track from any tab.

Plauserคืออะไร?

Plauser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kieran O'Neill และคุณลักษณะหลักของมันคือ "A Chrome extension that allows you to play/pause your current playing track from any tab."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Simplex Sigillum Veri...

Plauser simply adds a browser button that allows you to play/pause (plause) your current playing music track.

You can plause your current track from any browser tab.

Plauser supports the following music services:
- Google Music
- Spotify
- YouTube
- Grooveshark
- SoundCloud
- ...more coming soon!

What's new in 0.9.1!

- Plauser now allows you to bind a keystroke through the options menu. Try it out and start plausing, using the keyboard, from any tab!

Source available on GitHub: https://github.com/kieranroneill/plauser                    

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

ชื่อ Plauser Plauser
ID knhcbcbmbdififpcffkphaianpojnpai
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/plauser/knhcbcbmbdififpcffkphaianpojnpai
คำอธิบาย A Chrome extension that allows you to play/pause your current playing track from any tab.
ขนาดไฟล์ 62.78 KB
จำนวนการติดตั้ง 83
เวอร์ชันปัจจุบัน 0.9.1
อัปเดตครั้งล่าสุด 2014-10-29
วันที่เผยแพร่ 2014-10-29
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Kieran O'Neill
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kieranroneill/plauser
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Plauser",
    "short_name": "Plauser",
    "description": "A Chrome extension that allows you to play\/pause your current playing track from any tab.",
    "version": "0.9.1",
    "author": "Kieran O'Neill",
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/play.google.com\/music\/*",
        "https:\/\/play.spotify.com\/*",
        "https:\/\/www.youtube.com\/*",
        "http:\/\/grooveshark.com\/*",
        "https:\/\/soundcloud.com\/*"
    ],
    "icons": {
        "16": "images\/icon-plauser-16.png",
        "48": "images\/icon-plauser-48.png",
        "128": "images\/icon-plauser-128.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "images\/icon-plauser-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content-scripts\/content-script-key-event.js",
                "js\/global.js"
            ],
            "run_at": "document_start"
        }
    ]
}