Focus for Whatsapp Web
Reclaim your productivity.
ما هو Focus for Whatsapp Web؟
Focus for Whatsapp Web هو إضافة Chrome تم تطويرها بواسطة Jeroen Overschie، والميزة الرئيسية لها هي "Reclaim your productivity.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Focus for Whatsapp Web
قم بتنزيل ملفات الامتداد Focus for Whatsapp Web بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Hides the WhatsApp chat list - so you don't get lost in all your messages. Stop your flow from getting interrupted by your WhatsApp messages. This extension allows you to message one person, without seeing the entire chat list. Use the search bar and hit enter to open up a single chat.
معلومات أساسية عن التمديد
الاسم | Focus for Whatsapp Web |
ID | bjnibicbhblienknpljadlclofojhpnd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/focus-for-whatsapp-web/bjnibicbhblienknpljadlclofojhpnd |
الوصف | Reclaim your productivity. |
حجم الملف | 13.84 KB |
عدد التثبيتات | 38 |
النسخة الحالية | 1.0 |
آخر تحديث | 2021-03-02 |
تاريخ النشر | 2021-03-01 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | Jeroen Overschie |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/dunnkers/focus-whatsapp-web |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Focus for Whatsapp Web", "version": "1.0", "description": "Reclaim your productivity.", "manifest_version": 2, "permissions": [ "storage", "activeTab", "https:\/\/web.whatsapp.com\/*", "tabs" ], "options_ui": { "page": "options.html", "open_in_tab": false, "chrome_style": true }, "content_scripts": [ { "js": [ "content-script.js" ], "matches": [ "https:\/\/web.whatsapp.com\/*" ] } ], "browser_action": { "default_popup": "options.html" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |