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 |
官方網址 | 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" } } |