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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
        }
    }
}