Spot-A-Voice

Voice control for Spotify

Spot-A-Voice란 무엇입니까?

Spot-A-Voice은(는) yash.chitneni에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Voice control for Spotify"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Spot-A-Voice 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}