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 |
Eメール | [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\/*" ] } ] } |