Hue: More Colors for Google Calendar

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

Hue: More Colors for Google Calendar là gì?

Hue: More Colors for Google Calendar là một tiện ích mở rộng Chrome được phát triển bởi bryanhuangg, và tính năng chính của nó là "A Chrome extension designed to enhance and personalize your Google Calendar experience.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hue: More Colors for Google Calendar

Tải xuống các tệp mở rộng Hue: More Colors for Google Calendar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hue: More Colors for Google Calendar Hue: More Colors for Google Calendar
ID gglmljnnfgfkajefpbgjaeobelpokhbn
URL Chính Thức https://chromewebstore.google.com/detail/hue-more-colors-for-googl/gglmljnnfgfkajefpbgjaeobelpokhbn
Mô tả A Chrome extension designed to enhance and personalize your Google Calendar experience.
Kích Thước Tệp 205 KB
Số Lần Cài Đặt 566
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2024-02-15
Ngày Phát Hành 2023-11-12
Đánh Giá 3.38/5 Tổng số 13 Đánh Giá
Nhà Phát Triển bryanhuangg
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/bryanhuangg/gcal-hue/issues
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}