WhatsUpper?
Auto-capitalize the first letter in WhatsApp's chats.
ما هو WhatsUpper?؟
WhatsUpper? هو إضافة Chrome تم تطويرها بواسطة Pierluigi Zagaria، والميزة الرئيسية لها هي "Auto-capitalize the first letter in WhatsApp's chats.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة WhatsUpper?
قم بتنزيل ملفات الامتداد WhatsUpper? بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Once installed you can toggle the feature in the extension menu.
معلومات أساسية عن التمديد
الاسم | WhatsUpper? |
ID | olmljjmnbndapeodpcmifmoobcbhkobf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/whatsupper/olmljjmnbndapeodpcmifmoobcbhkobf |
الوصف | Auto-capitalize the first letter in WhatsApp's chats. |
حجم الملف | 42.72 KB |
عدد التثبيتات | 369 |
النسخة الحالية | 1.1.6 |
آخر تحديث | 2023-04-30 |
تاريخ النشر | 2020-08-30 |
تقييم | 2.86/5 مجموع تقييمات 7 |
المطور | Pierluigi Zagaria |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WhatsUpper?", "version": "1.1.6", "description": "Auto-capitalize the first letter in WhatsApp's chats.", "manifest_version": 3, "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "activeTab", "storage", "declarativeContent" ], "action": { "default_icon": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "js\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "run_at": "document_idle", "js": [ "js\/content.js" ] } ] } |