Light Mode for Zoom
A light color mode for Zoom video calls
什么是Light Mode for Zoom?
Light Mode for Zoom是由pineapposaurus开发的Chrome扩展程序,该扩展的主要功能是“A light color mode for Zoom video calls”。
扩展截图
下载Light Mode for Zoom扩展crx文件
下载Light Mode for Zoom扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension recolors Zoom in the browser to be in a light mode. The default colors are black text on light gray backgrounds. You can also change the colors yourself to whatever you like.
扩展基本信息
名称 | Light Mode for Zoom |
ID | llhajblobjekddiociecinmldheiomge |
官方URL | https://chromewebstore.google.com/detail/light-mode-for-zoom/llhajblobjekddiociecinmldheiomge |
简介 | A light color mode for Zoom video calls |
文件大小 | 20.17 KB |
安装次数 | 40 |
当前版本 | 1.1 |
更新时间 | 2021-09-01 |
上架时间 | 2021-06-08 |
开发者 | pineapposaurus |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Light Mode for Zoom", "description": "A light color mode for Zoom video calls", "version": "1.1", "manifest_version": 3, "background": { "service_worker": "background.js", "type": "module" }, "permissions": [ "storage", "activeTab", "scripting" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" }, "icons": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } }, "options_page": "options.html", "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+Z", "mac": "MacCtrl+Shift+Z" }, "description": "Opens Zoom Light Mode color settings" } }, "content_scripts": [ { "css": [ "style.css" ], "js": [ "style.js" ], "matches": [ "https:\/\/zoom.us\/wc\/*", "https:\/\/*.zoom.us\/wc\/*" ] } ] } |