Twitch Radio Mode

Enables radio mode in Chrome web browser

Τι είναι το Twitch Radio Mode;

Το Twitch Radio Mode είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rainbow, και η κύρια λειτουργία του είναι "Enables radio mode in Chrome web browser".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Twitch Radio Mode

Λήψη αρχείων επέκτασης Twitch Radio Mode σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The extension runs Twitch radio mode in Chrome. Saves network bandwidth, RAM, and other device resources.

"Radio mode" is a feature in Twitch mobile app, with which users can play only the sound of the stream, instead of playing the full video. The feature is useful for radio or music streams.

After installation, there will be a new "radio" button in control panel of the video. Radio mode can be started/stopped by a single click of this button, and users can engage in the chat just like when they play video streams.

NOTE: If you have any issues using the radio mode button, please refresh the webpage and try again.

The original source code can be found at: https://github.com/c-rainbow/twitch-audio-web

Frequently Asked Questions
- Can I use this extension in a recorded video, like past broadcasts, highlights, clips, etc?
This extension only works for a livestream.

- Can I collect channel points with this extension?
No, you cannot collect channel points if the video is not played.

- I cannot use radio mode in the main page.
For now, the extension only works in the streamer’s channel page.


Release notes
v0.6.0 (2022-08-21)
- Fixed a bug that the radio mode was stuck for ~30 seconds before the audio is played.
- Used authorization header to get access token if the user is logged in, to not play unnecessary ads.

v0.5.1 (2022-07-12)
- Fixed a bug that the radio mode was stuck for ~15 seconds before the audio is played.
- Fixed a bug that the radio mode button is always disabled for some people

For all other release notes, please refer to https://github.com/c-rainbow/twitch-audio-web/blob/master/.webstore/descriptions/en.txt                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Twitch Radio Mode Twitch Radio Mode
ID dbojkfdnamfipdnlknbpjphemjnldeoo
Επίσημο URL https://chromewebstore.google.com/detail/twitch-radio-mode/dbojkfdnamfipdnlknbpjphemjnldeoo
Περιγραφή Enables radio mode in Chrome web browser
Μέγεθος Αρχείου 122 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 0.6.0
Τελευταία Ενημέρωση 2022-08-23
Ημερομηνία Δημοσίευσης 2020-06-12
Αξιολόγηση 3.88/5 Συνολικά 56 Αξιολογήσεις
Προγραμματιστής Rainbow
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://c-rainbow.github.io/twitch-audio-web/
Υποστηριζόμενες Γλώσσες en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_EXT_NAME__",
    "version": "0.6.0",
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "default_locale": "en",
    "description": "__MSG_EXT_DESCRIPTION__",
    "icons": {
        "16": "icons\/icon_16w.png",
        "32": "icons\/icon_32w.png",
        "48": "icons\/icon_48w.png",
        "128": "icons\/icon_128w.png"
    },
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*.twitch.tv\/*",
        "*:\/\/usher.ttvnw.net\/*"
    ],
    "background": {
        "service_worker": ".\/dist\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "css": [
                ".\/css\/style.css"
            ],
            "js": [
                ".\/dist\/contentscript.js"
            ]
        }
    ]
}