Shuffify Controller

Allows Shuffify to play songs through your Spotify app

Cos'è Shuffify Controller?

Shuffify Controller è un'estensione di Chrome sviluppata da https://shuffify.com, e la sua funzione principale è "Allows Shuffify to play songs through your Spotify app".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Shuffify Controller

Scarica i file di estensione Shuffify Controller in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Shuffify Controller Shuffify Controller
ID gbpipjjonefebfajihgkgnmnnipflcmm
URL Ufficiale https://chromewebstore.google.com/detail/shuffify-controller/gbpipjjonefebfajihgkgnmnnipflcmm
Descrizione Allows Shuffify to play songs through your Spotify app
Dimensione del File 23.42 KB
Conteggio Installazioni 190
Versione Corrente 1.2.0.1
Ultimo Aggiornamento 2014-02-16
Data di Pubblicazione 2014-02-16
Valutazione 4.00/5 Totale 10 Valutazioni
Sviluppatore https://shuffify.com
Tipo di Pagamento free
Sito Web dell'Estensione http://spotifyshuffler.herokuapp.com/
URL della Pagina di Aiuto http://spotifyshuffler.herokuapp.com/
Lingue Supportate 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"
        }
    ]
}