Shuffify Controller

Allows Shuffify to play songs through your Spotify app

O que é Shuffify Controller?

Shuffify Controller é uma extensão do Chrome desenvolvida por https://shuffify.com, e sua principal característica é "Allows Shuffify to play songs through your Spotify app".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Shuffify Controller

Baixe arquivos de extensão Shuffify Controller no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Use the fantastic music platform Spotify© to play music from you and your friends playlists, one user at a time. That way, everyone gets a turn at choosing the music and everyone contributes to the experience.

Shuffify is great for any social situation where music is played:
=====================================
- Parties. Everyone gets to be the DJ. Get to know your friends' tastes by listening to a song from each of person in turn.
- At work. You and your colleagues can all contribute to the office music, by either having one computer running spotify on loud speakers, or everyone listening on your own computers.
- At home with the kids. Instead of having music competing from multiple rooms of your house, each family member gets to have their say in the home music.
- Stay connected. Listen to the same music with your friends across the globe and share your favorites together.

Example Usage: A Karaoke Party
===================
Everyone can create a Spotify© playlist with the Karaoke songs they plan on singing. (Like this one: Example playlist)
Then when they join a party together each person gets a turn at singing, one song at a time.
If guests think of a new song to sing, they just use Spotify© to update their playlist and use the 'refresh' button in shuffify to get the updated song list.

Start using Shuffify in 3 easy steps:
=====================
- Sign Up and create a Shuffify party.
- Invite your guests to add music by linking their Spotify© playlist.
- Download a Shuffify Controller to play your guests' songs through Spotify©.

Features include:
==========
- See everyones playlists, which song is playing and which is coming up next.
- Use Spotify©'s awesome interface to add and remove songs from your playlist, changes to Spotify© playlists will synchronize with Shuffify every few minutes.
- Vote to skip the current song, if more than half the people at your party vote, then the song will be skipped.
- Shuffle the order of your playlist by clicking the 'Shuffle it' button.

How does it work?
============
Shuffify gathers all the Spotify© URIs of all the songs in the party's playlists, then it marks one person in the party as NEXT. The Shuffify Controller app asks Shuffify which song to play every few seconds. If Spotify© is playing the wrong song, it switches to the right one and tells Shuffify which song its now playing.
When the song finishes Shuffify marks that song as COMPLETE and tells the Controller to play a song from the next party guest. Once all the songs in a persons playlist are marked as COMPLETE, all the marks are removed and their playlist starts again.                    

Informações Básicas da Extensão

Nome Shuffify Controller Shuffify Controller
ID gbpipjjonefebfajihgkgnmnnipflcmm
URL Oficial https://chromewebstore.google.com/detail/shuffify-controller/gbpipjjonefebfajihgkgnmnnipflcmm
Descrição Allows Shuffify to play songs through your Spotify app
Tamanho do Arquivo 23.42 KB
Contagem de Instalações 190
Versão Atual 1.2.0.1
Última Atualização 2014-02-16
Data de Publicação 2014-02-16
Classificação 4.00/5 Total de 10 Avaliações
Desenvolvedor https://shuffify.com
Tipo de Pagamento free
Site da Extensão http://spotifyshuffler.herokuapp.com/
URL da Página de Ajuda http://spotifyshuffler.herokuapp.com/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shuffify Controller",
    "version": "1.2.0.1",
    "manifest_version": 2,
    "description": "Allows Shuffify to play songs through your Spotify app",
    "background": {
        "scripts": [
            "application.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/open.spotify.com\/token",
        "https:\/\/shuffify.spotilocal.com:4370\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/shuffify.com\/*",
                "http:\/\/www.shuffify.com\/*",
                "http:\/\/spotifyshuffler.herokuapp.com\/*",
                "http:\/\/spotifyreader.dev\/*"
            ],
            "js": [
                "install_notice.js"
            ],
            "run_at": "document_start"
        }
    ]
}