Auto Contact Saver for Whatsapp Web
Save new Whatsapp contacts automatically.
ما هو Auto Contact Saver for Whatsapp Web؟
Auto Contact Saver for Whatsapp Web هو إضافة Chrome تم تطويرها بواسطة opsJson، والميزة الرئيسية لها هي "Save new Whatsapp contacts automatically.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Auto Contact Saver for Whatsapp Web
قم بتنزيل ملفات الامتداد Auto Contact Saver for Whatsapp Web بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension automatically saves new contacts, there’s no need to even leave the conversation window open. When saving, an hourglass icon (⌛) will be at the end of the name, signaling that everything went well, and you only have to wait up to 5 minutes for Google to send the contact to your cell phone. More info: https://opsjson.com.br/
معلومات أساسية عن التمديد
الاسم | Auto Contact Saver for Whatsapp Web |
ID | nloadjiefippecgegockfpioobngphnb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/auto-contact-saver-for-wh/nloadjiefippecgegockfpioobngphnb |
الوصف | Save new Whatsapp contacts automatically. |
حجم الملف | 24.22 KB |
عدد التثبيتات | 969 |
النسخة الحالية | 2.6 |
آخر تحديث | 2024-02-24 |
تاريخ النشر | 2023-01-08 |
تقييم | 4.00/5 مجموع تقييمات 9 |
المطور | opsJson |
البريد الإلكتروني | [email protected] |
نوع الدفع | in_app |
اللغات المدعومة | en,pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Auto Contact Saver for Whatsapp Web", "description": "__MSG_description__", "version": "2.6", "icons": { "16": ".\/icons\/16.png", "38": ".\/icons\/38.png", "64": ".\/icons\/64.png", "128": ".\/icons\/128.png" }, "default_locale": "en", "content_scripts": [ { "js": [ "injector.js" ], "matches": [ "https:\/\/web.whatsapp.com\/*" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "web_accessible_resources": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "resources": [ "script.js" ] } ], "permissions": [ "storage" ] } |