Twitch Emotes Downloader
Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,…
Hvad er Twitch Emotes Downloader?
Twitch Emotes Downloader er en Chrome-udvidelse udviklet af Maeverr, og dens hovedfunktion er "Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,…".
Udvidelsesskærmbilleder
Download Twitch Emotes Downloader-udvidelses-CRX-fil
Download Twitch Emotes Downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | hchmfokcihnfaljjkdafaclojmgibcgm |
| Officiel URL | https://chromewebstore.google.com/detail/twitch-emotes-downloader/hchmfokcihnfaljjkdafaclojmgibcgm |
| Beskrivelse | Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,… |
| Filstørrelse | 53.21 KB |
| Antal Installationer | 1,184 |
| Nuværende Version | 0.8 |
| Senest Opdateret | 2024-02-26 |
| Udgivelsesdato | 2023-06-05 |
| Bedømmelse | 4.33/5 Samlet 6 Bedømmelser |
| Udvikler | Maeverr |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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\/*"
]
}
]
} | |