Google Calendar Color
Adds color to weekends in Google Calendar
什么是Google Calendar Color?
Google Calendar Color是由Mai Nakagawa开发的Chrome扩展程序,该扩展的主要功能是“Adds color to weekends in Google Calendar”。
扩展截图
下载Google Calendar Color扩展crx文件
下载Google Calendar Color扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Colorizes weekends not only in Google Calendar but in Google Tasks. The source code is hosted at https://github.com/mai-nakagawa/google-calendar-color 扩展基本信息
| 名称 | |
| ID | dgpackgbkgdjgchmdodmaaildnpnbdph |
| 官方URL | https://chrome.google.com/webstore/detail/google-calendar-color/dgpackgbkgdjgchmdodmaaildnpnbdph |
| 简介 | Adds color to weekends in Google Calendar |
| 文件大小 | 35.05 KB |
| 安装次数 | 1,000 |
| 当前版本 | 1.2.0 |
| 更新时间 | 2016-10-03 |
| 上架时间 | 2016-10-03 |
| 评分 | 1.20/5 共5次评分 |
| 开发者 | Mai Nakagawa |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Google Calendar Color",
"description": "Adds color to weekends in Google Calendar",
"version": "1.2.0",
"browser_action": {
"default_title": "Edit the color scheme",
"default_popup": "html\/popup.html"
},
"icons": {
"16": "images\/calendar.png",
"48": "images\/calendar.png",
"128": "images\/calendar.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/calendar.google.com\/*"
],
"js": [
"js\/content_script.js"
]
}
],
"background": {
"persistent": false,
"scripts": [
"js\/background.js"
]
},
"permissions": [
"webNavigation",
"tabs",
"storage",
"https:\/\/calendar.google.com\/*",
"https:\/\/mail.google.com\/*",
"http:\/\/localhost\/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"manifest_version": 2
} | |