Twitch Emotes Downloader
Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,…
ما هو Twitch Emotes Downloader؟
Twitch Emotes Downloader هو إضافة Chrome تم تطويرها بواسطة Maeverr، والميزة الرئيسية لها هي "Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Twitch Emotes Downloader
قم بتنزيل ملفات الامتداد Twitch Emotes Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Twitch Emotes Downloader |
ID | hchmfokcihnfaljjkdafaclojmgibcgm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/twitch-emotes-downloader/hchmfokcihnfaljjkdafaclojmgibcgm |
الوصف | Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,… |
حجم الملف | 53.21 KB |
عدد التثبيتات | 1,184 |
النسخة الحالية | 0.8 |
آخر تحديث | 2024-02-26 |
تاريخ النشر | 2023-06-05 |
تقييم | 4.33/5 مجموع تقييمات 6 |
المطور | Maeverr |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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\/*" ] } ] } |