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 |
官方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" } } } |