Whatsapp sidebar toggler

Lets you toggle between hiding and showing the sidebar on whatsapp web.

ما هو Whatsapp sidebar toggler؟

Whatsapp sidebar toggler هو إضافة Chrome تم تطويرها بواسطة ripper234، والميزة الرئيسية لها هي "Lets you toggle between hiding and showing the sidebar on whatsapp web.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Whatsapp sidebar toggler

قم بتنزيل ملفات الامتداد Whatsapp sidebar toggler بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Zen Mode for Whatsapp - zoom in on a single conversation.                    

معلومات أساسية عن التمديد

الاسم Whatsapp sidebar toggler Whatsapp sidebar toggler
ID goefhbjpikdfhmndoponcacbjoinllfp
عنوان URL الرسمي https://chrome.google.com/webstore/detail/whatsapp-sidebar-toggler/goefhbjpikdfhmndoponcacbjoinllfp
الوصف Lets you toggle between hiding and showing the sidebar on whatsapp web.
حجم الملف 5.66 KB
عدد التثبيتات 356
النسخة الحالية 1.0.0
آخر تحديث 2020-10-28
تاريخ النشر 2020-10-28
تقييم 5.00/5 مجموع تقييمات 2
المطور ripper234
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Whatsapp sidebar toggler",
    "version": "1.0.0",
    "description": "Lets you toggle between hiding and showing the sidebar on whatsapp web.",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            ".\/src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/"
            ],
            "run_at": "document_idle",
            "js": [
                ".\/src\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": ".\/images\/icons\/icon.png",
            "48": ".\/images\/icons\/icon.png"
        }
    },
    "icons": {
        "16": ".\/images\/icons\/icon.png",
        "48": ".\/images\/icons\/icon.png",
        "128": ".\/images\/icons\/icon.png"
    }
}