Spot-A-Voice

Voice control for Spotify

Spot-A-Voiceคืออะไร?

Spot-A-Voice เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yash.chitneni และคุณลักษณะหลักของมันคือ "Voice control for Spotify"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spot-A-Voice

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

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

                        Implemented voice commands on https://play.spotify.com.

Why use Spotify Web Player rather than desktop?
We have two specific reasons. First one, from a computer's standpoint, using the Web Player doesn't take up space on your hard drive, while the desktop app does!

MORE IMPORTANTLY!
Your great music taste is deserved to be heard by everyone in your home! With the Web Player, you can use ChromeCast and wirelessly play some great tunes through your speakers while working in any room!

The constant need to go back and change, stop or play a song in between your workflow gets frustrating. We understand music plays a huge role in your daily lives and we want to take a tiny step forward in make your listening experience more enjoyable.

The following commands are included in version 1.0:
1. Play Song
2. Stop Song
3. Previous Song
4. Next Song
5. Restart Song
6. Search ____ Please

With the next release, we are going to implement various other commands such as Volume Control and further enhance the experience to play a specific artist or song.                    

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

ชื่อ Spot-A-Voice Spot-A-Voice
ID pjjpfppchphifcbjnfmdadaeoffajamg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/spot-a-voice/pjjpfppchphifcbjnfmdadaeoffajamg
คำอธิบาย Voice control for Spotify
ขนาดไฟล์ 566 KB
จำนวนการติดตั้ง 80
เวอร์ชันปัจจุบัน 2
อัปเดตครั้งล่าสุด 2014-06-02
วันที่เผยแพร่ 2014-06-02
คะแนน 4.31/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา yash.chitneni
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spot-A-Voice",
    "version": "2",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.spotify.com\/*"
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "annyang.min.js",
                "spotavoice.js"
            ]
        }
    ],
    "description": "Voice control for Spotify",
    "icons": {
        "16": "popup_icon_16.png",
        "48": "popup_icon_48.png",
        "128": "popup_icon_128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_title": "Spot-A-Voice",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "popup_icon_19.png",
            "38": "popup_icon_38.png"
        }
    }
}