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.”。
扩展截图
下载Whatsapp sidebar toggler扩展crx文件
下载Whatsapp sidebar toggler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Zen Mode for Whatsapp - zoom in on a single conversation.
扩展基本信息
名称 | |
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" } } |