{"id":48147662,"url":"https://github.com/graysoncadams/spicetify-jam-roundrobin","last_synced_at":"2026-04-04T17:01:51.631Z","repository":{"id":346703506,"uuid":"1186853209","full_name":"GraysonCAdams/spicetify-jam-roundrobin","owner":"GraysonCAdams","description":"Spicetify extension for fair round-robin queue ordering in Spotify Jam sessions","archived":false,"fork":false,"pushed_at":"2026-03-25T03:13:52.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-26T09:03:25.432Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GraysonCAdams.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-20T03:56:52.000Z","updated_at":"2026-03-25T03:13:55.000Z","dependencies_parsed_at":"2026-03-26T09:03:49.308Z","dependency_job_id":null,"html_url":"https://github.com/GraysonCAdams/spicetify-jam-roundrobin","commit_stats":null,"previous_names":["graysoncadams/spicetify-jam-roundrobin"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/GraysonCAdams/spicetify-jam-roundrobin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GraysonCAdams%2Fspicetify-jam-roundrobin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GraysonCAdams%2Fspicetify-jam-roundrobin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GraysonCAdams%2Fspicetify-jam-roundrobin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GraysonCAdams%2Fspicetify-jam-roundrobin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GraysonCAdams","download_url":"https://codeload.github.com/GraysonCAdams/spicetify-jam-roundrobin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GraysonCAdams%2Fspicetify-jam-roundrobin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31407391,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-04T17:01:51.349Z","updated_at":"2026-04-04T17:01:51.585Z","avatar_url":"https://github.com/GraysonCAdams.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spicetify Jam Round Robin\n\nA [Spicetify](https://spicetify.app/) extension that enforces fair, round-robin queue ordering in Spotify Jam sessions. Each participant gets a turn before anyone goes twice.\n\n## How it works\n\n- Detects active Jam sessions via Spotify's `SocialConnectAPI`\n- Reads the queue DOM to identify which user queued each track (via avatar matching)\n- Automatically reorders the queue so participants alternate fairly\n- Tracks play counts per member — if someone misses a turn, they get catch-up priority when they queue next\n- Polls every 3 seconds and reorders on queue changes or song changes\n\n## Install\n\n1. Install [Spicetify](https://spicetify.app/docs/getting-started)\n2. Copy `jam-roundrobin.js` to your Spicetify extensions folder:\n   ```bash\n   cp jam-roundrobin.js ~/.config/spicetify/Extensions/\n   ```\n3. Register and apply:\n   ```bash\n   spicetify config extensions jam-roundrobin.js\n   spicetify apply\n   ```\n\n## Usage\n\nThe extension auto-starts when Spotify loads. It activates when a Jam session with 2+ members is detected.\n\n- **Toggle**: Profile menu → \"Jam Round Robin\"\n- **Notifications**: Shows whose turn it is and when the queue is reordered\n\n### Debug console\n\nOpen Spotify DevTools (`Cmd+Opt+I` / `Ctrl+Shift+I`) and use:\n\n```js\n__jamRR.getState()          // session members, play counts, currently playing\n__jamRR.getQueue()          // annotated queue with ownership\n__jamRR.enforceRoundRobin() // manually trigger reorder\n```\n\n## How fairness works\n\n1. The currently playing track's owner is identified\n2. Members are sorted by fewest tracks played (catch-up priority), then by rotation order after the current player\n3. Queued tracks are interleaved following this priority\n4. If a member has no tracks queued, their turn is skipped — but they get priority once they add something\n\n## Requirements\n\n- Spotify desktop app\n- [Spicetify](https://spicetify.app/) v2.30+\n- An active Spotify Jam session\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgraysoncadams%2Fspicetify-jam-roundrobin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgraysoncadams%2Fspicetify-jam-roundrobin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgraysoncadams%2Fspicetify-jam-roundrobin/lists"}