Soundbounce

Listen to Spotify in sync with users around the world

Soundbounce là gì?

Soundbounce là một tiện ích mở rộng Chrome được phát triển bởi soundbounce.org, và tính năng chính của nó là "Listen to Spotify in sync with users around the world".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Soundbounce

Tải xuống các tệp mở rộng Soundbounce dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Soundbounce Soundbounce
ID apbdfongpgacifbamjfogfncjjhkaeih
URL Chính Thức https://chromewebstore.google.com/detail/soundbounce/apbdfongpgacifbamjfogfncjjhkaeih
Mô tả Listen to Spotify in sync with users around the world
Kích Thước Tệp 20.13 KB
Số Lần Cài Đặt 1,767
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2015-08-19
Ngày Phát Hành 2015-08-19
Đánh Giá 3.18/5 Tổng số 33 Đánh Giá
Nhà Phát Triển soundbounce.org
Loại Thanh Toán free
Trang Web Mở Rộng http://www.soundbounce.org
URL Trang Trợ Giúp https://github.com/pdaddyo/soundbounce
Ngôn Ngữ Được Hỗ Trợ 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
}