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”。
擴展截圖
下載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 |
ID | nhbijjgmjdfoppaoogknapfokimbgjbp |
官方網址 | 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" } } } |