Whatsapp sidebar toggler

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

What is Whatsapp sidebar toggler?

Whatsapp sidebar toggler is a Chrome extension developed by ripper234, and its main feature is "Lets you toggle between hiding and showing the sidebar on whatsapp web.".

Extension Screenshots

screenshot

Download Whatsapp sidebar toggler Extension CRX File

Download Whatsapp sidebar toggler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Whatsapp sidebar toggler Whatsapp sidebar toggler
ID goefhbjpikdfhmndoponcacbjoinllfp
Official URL https://chrome.google.com/webstore/detail/whatsapp-sidebar-toggler/goefhbjpikdfhmndoponcacbjoinllfp
Description Lets you toggle between hiding and showing the sidebar on whatsapp web.
File Size 5.66 KB
Installation Count 356
Current Version 1.0.0
Last Updated 2020-10-28
Publish Date 2020-10-28
Rating 5.00/5 Total 2 Ratings
Developer ripper234
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}