Twitch Chat Translation
Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.
Τι είναι το Twitch Chat Translation;
Το Twitch Chat Translation είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sei Watson, και η κύρια λειτουργία του είναι "Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Twitch Chat Translation
Λήψη αρχείων επέκτασης Twitch Chat Translation σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Use DeepL Translate or Google Translate to translate your Twitch chat into the specified language. This extension has the ability to always keep only the chats translated to the specified language instead of the traditional page reload translation method. By subscribing to the paid plans of DeepL Translate and Google Translate, you will be able to access higher APIs than the free plan, which will further improve the performance of this extension. Break language barriers with this extension!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Twitch Chat Translation |
ID | fhpfpbkkgoancfjpagdbpolpdianmnhm |
Επίσημο URL | https://chromewebstore.google.com/detail/twitch-chat-translation/fhpfpbkkgoancfjpagdbpolpdianmnhm |
Περιγραφή | Translate Twitch Chat to the specified language using DeepL Translate or Google Translate. |
Μέγεθος Αρχείου | 19.46 KB |
Αριθμός Εγκαταστάσεων | 1,400 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2022-11-16 |
Ημερομηνία Δημοσίευσης | 2022-11-15 |
Αξιολόγηση | 1.22/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | Sei Watson |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitch Chat Translation", "description": "Translate Twitch Chat to the specified language using DeepL Translate or Google Translate. ", "version": "1.0", "icons": { "48": "images\/icon-48.png" }, "background": { "service_worker": "scripts\/background.js", "persisten": false }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/www.twitch.tv\/*" ], "exclude_matches": [], "js": [ "scripts\/content-script.js" ] } ], "action": { "default_icon": { "48": "images\/icon-48.png" } }, "permissions": [ "activeTab", "scripting", "storage" ], "host_permissions": [ "https:\/\/api-free.deepl.com\/*" ], "options_ui": { "page": "config.html", "open_in_tab": false } } |