Whatsapp sidebar toggler

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

Whatsapp sidebar toggler là gì?

Whatsapp sidebar toggler là một tiện ích mở rộng Chrome được phát triển bởi ripper234, và tính năng chính của nó là "Lets you toggle between hiding and showing the sidebar on whatsapp web.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Whatsapp sidebar toggler

Tải xuống các tệp mở rộng Whatsapp sidebar toggler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Whatsapp sidebar toggler Whatsapp sidebar toggler
ID goefhbjpikdfhmndoponcacbjoinllfp
URL Chính Thức https://chrome.google.com/webstore/detail/whatsapp-sidebar-toggler/goefhbjpikdfhmndoponcacbjoinllfp
Mô tả Lets you toggle between hiding and showing the sidebar on whatsapp web.
Kích Thước Tệp 5.66 KB
Số Lần Cài Đặt 356
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-10-28
Ngày Phát Hành 2020-10-28
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển ripper234
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}