Soundbounce
Listen to Spotify in sync with users around the world
Soundbounce란 무엇입니까?
Soundbounce은(는) soundbounce.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Listen to Spotify in sync with users around the world"입니다.
확장 프로그램 스크린샷
Soundbounce 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Use Soundbounce in your browser! Uses Spotify's web player to play audio from rooms in Soundbounce. More info at www.soundbounce.org v0.5 - various fixes, "Open in spotify" improved v0.4.2 - attempted fix for player.spotify.com users v0.4.1 - fix for reported login issue v0.4 - Starring now works
확장 프로그램 기본 정보
이름 | Soundbounce |
ID | apbdfongpgacifbamjfogfncjjhkaeih |
공식 URL | https://chromewebstore.google.com/detail/soundbounce/apbdfongpgacifbamjfogfncjjhkaeih |
설명 | Listen to Spotify in sync with users around the world |
파일 크기 | 20.13 KB |
설치 횟수 | 1,767 |
현재 버전 | 0.5 |
최근 업데이트 | 2015-08-19 |
출시 날짜 | 2015-08-19 |
평점 | 3.18/5 총 33 개의 평점 |
개발자 | soundbounce.org |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.soundbounce.org |
도움말 페이지 URL | https://github.com/pdaddyo/soundbounce |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqh5MiS6XjqmXonk330rLz7uBzECpnDHXt\/SwaWmr8\/K27CcyBAiSjxZ7+cEbcUBDpRblJ6xvBXsujEHxP4nN4PJXfDsLtv3PN85yE6xXFrSouCmsLTrMemgeV0IyGkTYvtzKKiJqLlkz9Xe4HbKQebMh3lVuqxMQBPQH7G5hCAGvy0M\/wR5\/1dbMtiHT3RSdORLPmZ+h6wyu84uwFh7jUJo1qs3\/6cPVW6hiauaABo6uU6UqqGQaatkirARPoNMZZ28ljcI5VB6lbCZ6sXFJf9YgqTiLgv2bUA0VW635kn6+tcxSCoX5xvVkzQ\/sVIATGs8C8MVplrxwm7dRV9uSbwIDAQAB", "name": "Soundbounce", "description": "Listen to Spotify in sync with users around the world", "version": "0.5", "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_title": "Soundbounce", "default_icon": "soundbounce-icon-128.png" }, "icons": { "128": "soundbounce-icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/app.soundbounce.org\/*" ], "js": [ "browser-api.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/play.spotify.com\/*", "https:\/\/player.spotify.com\/*" ], "js": [ "spotify-player-content-script.js" ], "all_frames": true } ], "externally_connectable": { "ids": [ "*" ], "matches": [ "http:\/\/app.soundbounce.org\/*", "https:\/\/app.soundbounce.org\/*" ] }, "manifest_version": 2 } |