Light Mode for Zoom

A light color mode for Zoom video calls

Was ist Light Mode for Zoom?

Light Mode for Zoom ist eine Chrome-Erweiterung, die von pineapposaurus entwickelt wurde, und ihr Hauptmerkmal ist "A light color mode for Zoom video calls".

Erweiterungsscreenshots

screenshot

Light Mode for Zoom-Erweiterungs-CRX-Datei herunterladen

Laden Sie Light Mode for Zoom-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Light Mode for Zoom Light Mode for Zoom
ID llhajblobjekddiociecinmldheiomge
Offizielle URL https://chromewebstore.google.com/detail/light-mode-for-zoom/llhajblobjekddiociecinmldheiomge
Beschreibung A light color mode for Zoom video calls
Dateigröße 20.17 KB
Installationsanzahl 40
Aktuelle Version 1.1
Letztes Update 2021-09-01
Veröffentlichungsdatum 2021-06-08
Entwickler pineapposaurus
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}