Whatsapp sidebar toggler

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

Whatsapp sidebar togglerとは何ですか?

Whatsapp sidebar togglerはripper234によって開発されたChromeの拡張機能で、その主な機能は「Lets you toggle between hiding and showing the sidebar on whatsapp web.」です。

拡張機能のスクリーンショット

screenshot

Whatsapp sidebar toggler拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}