Whatsapp sidebar toggler

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

Whatsapp sidebar toggler क्या है?

Whatsapp sidebar toggler ripper234 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Lets you toggle between hiding and showing the sidebar on whatsapp web."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Whatsapp sidebar toggler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}