Twitch Emotes Downloader
Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,…
¿Qué es Twitch Emotes Downloader?
Twitch Emotes Downloader es una extensión de Chrome desarrollada por Maeverr, y su función principal es "Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitch Emotes Downloader
Descarga archivos de extensión Twitch Emotes Downloader 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
Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality, you can now choose between two convenient options. Option 1 enables you to download individual emoji images. Alternatively, with Option 2, you can effortlessly download the entire collection of emojis in a compressed zip file, saving you time and storage space.
Información Básica de la Extensión
Nombre | Twitch Emotes Downloader |
ID | hchmfokcihnfaljjkdafaclojmgibcgm |
URL Oficial | https://chromewebstore.google.com/detail/twitch-emotes-downloader/hchmfokcihnfaljjkdafaclojmgibcgm |
Descripción | Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,… |
Tamaño del Archivo | 53.21 KB |
Cantidad de Instalaciones | 1,184 |
Versión Actual | 0.8 |
Última Actualización | 2024-02-26 |
Fecha de Publicación | 2023-06-05 |
Calificación | 4.33/5 Total de 6 Calificaciones |
Desarrollador | Maeverr |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitch Emotes Downloader", "version": "0.8", "icons": { "128": "icon.png" }, "background": { "scripts": [ "bg.js" ] }, "action": { "default_title": "init", "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_end", "js": [ "content-min.js" ], "matches": [ "https:\/\/www.twitch.tv\/*" ] }, { "run_at": "document_start", "js": [ "zipper.js" ], "matches": [ "https:\/\/www.twitch.tv\/*" ] } ] } |