Light Mode for Zoom

A light color mode for Zoom video calls

Light Mode for Zoomคืออะไร?

Light Mode for Zoom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pineapposaurus และคุณลักษณะหลักของมันคือ "A light color mode for Zoom video calls"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Light Mode for Zoom

ดาวน์โหลดไฟล์ส่วนขยาย 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 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\/*"
            ]
        }
    ]
}