Twitch Enhancer
Extension that adds what is missing on Twitch.
Cos'è Twitch Enhancer?
Twitch Enhancer è un'estensione di Chrome sviluppata da https://enhancer.pro, e la sua funzione principale è "Extension that adds what is missing on Twitch.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Enhancer
Scarica i file di estensione Twitch Enhancer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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] Informazioni di Base sull'Estensione
| Nome | |
| ID | knaodoefkjbgmmilogebghadhmnphjih |
| URL Ufficiale | https://chromewebstore.google.com/detail/twitch-enhancer/knaodoefkjbgmmilogebghadhmnphjih |
| Descrizione | Extension that adds what is missing on Twitch. |
| Dimensione del File | 517 KB |
| Conteggio Installazioni | 20,000 |
| Versione Corrente | 4.0.14 |
| Ultimo Aggiornamento | 2024-02-27 |
| Data di Pubblicazione | 2021-11-09 |
| Valutazione | 4.00/5 Totale 38 Valutazioni |
| Sviluppatore | https://enhancer.pro |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://enhancer.pro |
| Lingue Supportate | 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"
}
} | |