Twitch Emotes Downloader
Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,…
Was ist Twitch Emotes Downloader?
Twitch Emotes Downloader ist eine Chrome-Erweiterung, die von Maeverr entwickelt wurde, und ihr Hauptmerkmal ist "Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,…".
Erweiterungsscreenshots
Twitch Emotes Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitch Emotes Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Twitch Emotes Downloader |
ID | hchmfokcihnfaljjkdafaclojmgibcgm |
Offizielle URL | https://chromewebstore.google.com/detail/twitch-emotes-downloader/hchmfokcihnfaljjkdafaclojmgibcgm |
Beschreibung | Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,… |
Dateigröße | 53.21 KB |
Installationsanzahl | 1,184 |
Aktuelle Version | 0.8 |
Letztes Update | 2024-02-26 |
Veröffentlichungsdatum | 2023-06-05 |
Bewertung | 4.33/5 Insgesamt 6 Bewertungen |
Entwickler | Maeverr |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } ] } |