Cast to Sonos

This extension allows you to cast your tab to a sonos device.

什麼是Cast to Sonos?

Cast to Sonos是由https://casttosonos.com開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to cast your tab to a sonos device.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Cast to Sonos擴展crx文件

下載Cast to Sonos擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Installation instructions: https://medium.com/@casttosonos/how-to-cast-to-sonos-from-chrome-805fbc36a60d

Until now, it has not been possible to stream audio directly from youtube or any other platform from the browser to a Sonos system. Cast to Sonos offers a similar experience as the Chromecast feature in chrome browsers. 

After installing you can easily cast any audio that you can play inside chrome, to your Sonos device by going to the top-right and clicking the puzzle icon. 

After opening the extension, you can make a choice to use the free version with limited quality or the premium version. After that, you can select the room and the group you want to cast to. The selection box will become selected and the play button will show up after the extension is connected to your device.

If you are not able to connect, make sure that no other app is using your Sonos device, Spotify or Youtube for example. Try pausing or disconnecting from the app that is currently using your Sonos device.

If you are experiencing technical issues, you can go to the Chrome Web Store "Support page" and leave your questions there and we will get back to you as soon as possible.

Technical note about the delay:
This extension streams your audio from your tab to your Sonos device. Naturally, there is a delay because you're not playing an audio clip, you are streaming, just like how Chromecast does it. The advantage is that it works for every website and with any kind of audio source that Google Chrome supports. 

With this extension, you are not able to turn your Sonos device into PC speakers. You are better off buying a good pair of normal PC speakers.

Changelog:

v1.1:
* Added free mode
* Added more languages
* Improved error handling and error explanations
* Changed font

v1.2:
* Improved messages and handling of rate limit errors
* Fixed a bug that caused users to have to re-authenticate with Sonos
* Changed icons

v1.3:
* Fixed an issue with translations that made it impossible for non-English users to install the extension

v1.4:
* Changed Dutch translations
* Add dynamic background based on website contents
* Removed debug information that was cluttering the debug logs
* Better error handling for users that attempt to stream pages starting with chrome://
* Close the previous stream when the user starts a new stream on a new tab
* Changed the icon displayed inside the Sonos app
* Added an error screen when the user can not connect to the server
* Added a loading screen when the app is connecting to the server
* Add a dynamic icon inside the Sonos app

v1.5:
* Corrected incorrect title

v1.6:
* Remember living room and device after popup is closed
* Improved speed at which the background color and thumbnail image is retrieved from the foreground webpage to +-100ms

v1.7:
* Improved logging for better debugging

v1.8:
* Added extension version number for better debugging
* Retry mechanism for when fetching the user fails
* Better error display, no more alert windows
* Fixed an issue where the tab media stream would not stop after disabling the connection before pressing play
* Prevent unnecessary network requests from the background script
* Do not display the ERROR_RESOURCE_GONE error, re-fetch the households instead
* Introduce a timeout for network requests of 5 seconds
* Rename the native 'TypeError: Failed to fetch' error message to 'Network error', because it's confusing
* Rename the native 'AbortError, DOMException, user cancelled the request' to 'Network error', because it's confusing (and not correct)
* Better error handling when there are connectivity issues
* Translated a few error messages which were still English-only
* Handle all kind of connectivity issues and recover from network failures

v1.9:
* Added the ability to disable front-end scripts 
* Removed permissions for access to all urls, instead use the "activeTab" permission 
* Added a link to manage premium subscriptions to the options page 
* Fixed an issue with refreshing expired auth tokens and handling of invalid auth tokens

v1.10
* Added rewardful for affiliate marketing
* Fixed an issue with language translations which caused app installations to fail

v1.11
* Changed Chrome web store category to "Entertainment"                    

擴展基本資訊

名稱 Cast to Sonos Cast to Sonos
ID defbpbmenfaikcnhmamnghdlcmahjaib
官方網址 https://chromewebstore.google.com/detail/cast-to-sonos/defbpbmenfaikcnhmamnghdlcmahjaib
簡介 This extension allows you to cast your tab to a sonos device.
檔案大小 387 KB
安裝次數 6,412
目前版本 1.10
更新時間 2024-01-21
上架時間 2022-09-29
評分 2.76/5 共 17 次評分
開發者 https://casttosonos.com
電子郵箱 [email protected]
付費類型 in_app
擴展官網 https://casttosonos.com
說明頁面URL https://casttosonos.com#contact
隱私政策頁面URL https://echosierrastudio.github.io/EchoSierraStudio/chrome-web-extensions-policy
支援的語言 id,ms,de,en,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,ar,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cast to Sonos",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "version": "1.10",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabCapture",
        "tabs",
        "activeTab",
        "storage",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "mp3-processor.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/streaming.casttosonos.com\/*"
        ]
    },
    "options_ui": {
        "open_in_tab": false,
        "page": "options.html"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "64": "images\/icon64.png",
            "128": "images\/icon.png"
        },
        "default_popup": "popup.html",
        "default_title": "Open Chrome Audio Capture interface"
    },
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "64": "images\/icon64.png",
        "128": "images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "extpay-content-script.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "foreground-watcher.js"
            ],
            "run_at": "document_idle"
        }
    ]
}