Twitch Live Extension
A browser extension that lists your live followed streamers and sends notifications when they start a new stream
Τι είναι το Twitch Live Extension;
Το Twitch Live Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Pedro Silva, και η κύρια λειτουργία του είναι "A browser extension that lists your live followed streamers and sends notifications when they start a new stream".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Twitch Live Extension
Λήψη αρχείων επέκτασης Twitch Live Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
To start using it, open it, log in with your Twitch account so that the extension has access only to your public information and your follows, and, every time you click on the extension icon, you will see the streamers that you follow that are live. This extension supports *Just Went Live* notifications. If you want to enable them, open the extension, go to *Settings* and enable the Just Went Live notifications. There's also a button to log out from your Twitch account. Special thanks to everyone that helped test this extension: https://github.com/PedroS11/twitch-live-extension#contribution
Βασικές Πληροφορίες Επέκτασης
Όνομα | Twitch Live Extension |
ID | nlnfdlcbnpafokhpjfffmoobbejpedgj |
Επίσημο URL | https://chromewebstore.google.com/detail/twitch-live-extension/nlnfdlcbnpafokhpjfffmoobbejpedgj |
Περιγραφή | A browser extension that lists your live followed streamers and sends notifications when they start a new stream |
Μέγεθος Αρχείου | 143 KB |
Αριθμός Εγκαταστάσεων | 10,126 |
Τρέχουσα Έκδοση | 4.2.1 |
Τελευταία Ενημέρωση | 2023-09-27 |
Ημερομηνία Δημοσίευσης | 2020-10-13 |
Αξιολόγηση | 4.49/5 Συνολικά 59 Αξιολογήσεις |
Προγραμματιστής | Pedro Silva |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/PedroS11/twitch-live-extension |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/PedroS11/twitch-live-extension/issues |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitch Live Extension", "description": "A browser extension that lists your live followed streamers and sends notifications when they start a new stream", "version": "4.2.1", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_popup": "index.html", "default_title": "Twitch Live Extension", "default_icon": "icon.png" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/id.twitch.tv\/oauth2\/*", "https:\/\/api.twitch.tv\/helix\/*" ], "permissions": [ "identity", "notifications", "alarms", "storage", "idle" ] } |