Calendar Color Labels

Add configurable labels to Google Calendar event colors

Calendar Color Labelsとは何ですか?

Calendar Color Labelsはoneselfによって開発されたChromeの拡張機能で、その主な機能は「Add configurable labels to Google Calendar event colors」です。

拡張機能のスクリーンショット

screenshot
screenshot

Calendar Color Labels拡張機能のCRXファイルをダウンロード

Calendar Color Labels拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Google Calendar offers the ability to color events on the a calendar.  However, it is often hard to remember which color is used for which events type.  This extension adds a configurable set of labels that can be used to add meaning to event colors.  The label will be displayed as a hint when you hover over the color when setting it. You can also set the color names themselves with is useful for using Google Calendar with languages other than English (which is the default).                    

拡張機能の基本情報

名前 Calendar Color Labels Calendar Color Labels
ID nhbijjgmjdfoppaoogknapfokimbgjbp
公式URL https://chromewebstore.google.com/detail/calendar-color-labels/nhbijjgmjdfoppaoogknapfokimbgjbp
説明 Add configurable labels to Google Calendar event colors
ファイルサイズ 31.34 KB
インストール数 4,325
現在のバージョン 1.0
最終更新日 2022-05-24
公開日 2021-02-23
評価 2.77/5 合計 26 レビュー
開発者 oneself
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/oneself/calendarcolorlabels
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Calendar Color Labels",
    "description": "Add configurable labels to Google Calendar event colors",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/calendar.google.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "shared.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/calendartaglabels16.png",
        "32": "\/images\/calendartaglabels32.png",
        "48": "\/images\/calendartaglabels48.png",
        "128": "\/images\/calendartaglabels128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/calendartaglabels16.png",
            "32": "\/images\/calendartaglabels32.png",
            "48": "\/images\/calendartaglabels48.png",
            "128": "\/images\/calendartaglabels128.png"
        }
    }
}