Hue: More Colors for Google Calendar

A Chrome extension designed to enhance and personalize your Google Calendar experience.

什麼是Hue: More Colors for Google Calendar?

Hue: More Colors for Google Calendar是由bryanhuangg開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension designed to enhance and personalize your Google Calendar experience.”。

擴展截圖

screenshot
screenshot

下載Hue: More Colors for Google Calendar擴展crx文件

下載Hue: More Colors for Google Calendar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Currently allows you to have full control of the colors on your Google Calendar events. Add new colors to your palette in the extensions popup menu to see more color options in your calendar! More features to come.


Patch Notes:

Version 1.0.2 (2/2/2024)
Fixed issue where event colors do not change properly due to google calendar update.                    

擴展基本資訊

名稱 Hue: More Colors for Google Calendar Hue: More Colors for Google Calendar
ID gglmljnnfgfkajefpbgjaeobelpokhbn
官方網址 https://chromewebstore.google.com/detail/hue-more-colors-for-googl/gglmljnnfgfkajefpbgjaeobelpokhbn
簡介 A Chrome extension designed to enhance and personalize your Google Calendar experience.
檔案大小 205 KB
安裝次數 566
目前版本 1.0.2
更新時間 2024-02-15
上架時間 2023-11-12
評分 3.38/5 共 13 次評分
開發者 bryanhuangg
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/bryanhuangg/gcal-hue/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hue: More Colors for Google Calendar",
    "version": "1.0.2",
    "description": "A Chrome extension designed to enhance and personalize your Google Calendar experience.",
    "host_permissions": [
        "https:\/\/calendar.google.com\/*",
        "http:\/\/calendar.google.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon.png",
            "48": "icon.png",
            "128": "icon.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "colour.js",
                "selector.js"
            ],
            "matches": [
                "https:\/\/calendar.google.com\/*",
                "http:\/\/calendar.google.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon.png",
                "trash16.png"
            ],
            "matches": [
                "https:\/\/calendar.google.com\/*",
                "http:\/\/calendar.google.com\/*"
            ]
        }
    ]
}