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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}