Twitch Enhancer
Extension that adds what is missing on Twitch.
Τι είναι το Twitch Enhancer;
Το Twitch Enhancer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://enhancer.pro, και η κύρια λειτουργία του είναι "Extension that adds what is missing on Twitch.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Twitch Enhancer
Λήψη αρχείων επέκτασης Twitch Enhancer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension enhances Twitch with many features: - Local wachtime - time spent watching your favorite streamers will be tracked, - Bumping messages - show that you like someone's message, - Chatters count - from now on you will know if streamer have fake viewers, - Enhanced usercard - by clicking on user on chat you can see which streamers he is watching, - Real Video Time - this shows you real time of video you are watching, also you can paste link of other video with timestamp to see exact moment from the other video, - Quick Access Link (e.g. TwitchTracker), - Easy copying emotes and usernames from chat, - Ping sound when got mentioned on chat, and more! https://github.com/animekkk/twitch-enhancer [email protected]
Βασικές Πληροφορίες Επέκτασης
Όνομα | Twitch Enhancer |
ID | knaodoefkjbgmmilogebghadhmnphjih |
Επίσημο URL | https://chromewebstore.google.com/detail/twitch-enhancer/knaodoefkjbgmmilogebghadhmnphjih |
Περιγραφή | Extension that adds what is missing on Twitch. |
Μέγεθος Αρχείου | 517 KB |
Αριθμός Εγκαταστάσεων | 20,000 |
Τρέχουσα Έκδοση | 4.0.14 |
Τελευταία Ενημέρωση | 2024-02-27 |
Ημερομηνία Δημοσίευσης | 2021-11-09 |
Αξιολόγηση | 4.00/5 Συνολικά 38 Αξιολογήσεις |
Προγραμματιστής | https://enhancer.pro |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://enhancer.pro |
Υποστηριζόμενες Γλώσσες | pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Enhancer", "description": "Extension that adds what is missing on Twitch.", "version": "4.0.14", "manifest_version": 2, "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "inject.js", "content.js" ], "all_frames": true, "css": [ "bundle.css" ] } ], "background": { "scripts": [ "worker.js" ], "persistent": false }, "web_accessible_resources": [ "index.js", "bundle.css", "img\/*.png", "img\/*.svg", "img\/*.jpg", "sounds\/*.ogg", "sounds\/*.mp3" ], "permissions": [ "*:\/\/*.twitch.tv\/*" ], "icons": { "128": "img\/icon.png" } } |