Twitch Enhancer
Extension that adds what is missing on Twitch.
¿Qué es Twitch Enhancer?
Twitch Enhancer es una extensión de Chrome desarrollada por https://enhancer.pro, y su función principal es "Extension that adds what is missing on Twitch.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitch Enhancer
Descarga archivos de extensión Twitch Enhancer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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]
Información Básica de la Extensión
Nombre | Twitch Enhancer |
ID | knaodoefkjbgmmilogebghadhmnphjih |
URL Oficial | https://chromewebstore.google.com/detail/twitch-enhancer/knaodoefkjbgmmilogebghadhmnphjih |
Descripción | Extension that adds what is missing on Twitch. |
Tamaño del Archivo | 517 KB |
Cantidad de Instalaciones | 20,000 |
Versión Actual | 4.0.14 |
Última Actualización | 2024-02-27 |
Fecha de Publicación | 2021-11-09 |
Calificación | 4.00/5 Total de 38 Calificaciones |
Desarrollador | https://enhancer.pro |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://enhancer.pro |
Idiomas Soportados | 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" } } |