Calendar Dots

Change Dot Color to Reflect Event Tag Color

什么是Calendar Dots?

Calendar Dots是由afree1423开发的Chrome扩展程序,该扩展的主要功能是“Change Dot Color to Reflect Event Tag Color”。

扩展截图

screenshot

下载Calendar Dots扩展crx文件

下载Calendar Dots扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Google calendar now shows event names in the color of the calendar. This extension uses the new dots next to the event to show whatever color you select for each event (use green to mark as completed, etc).

Developed by Addison Freeman (addisonfreeman.com)
Sponsored by moveON Moving (https://www.moveonmoving.com)

MIT license, source here: https://github.com/AddisonFreeman/Google-Calendar-Dot-Color-Fix                    

扩展基本信息

名称 Calendar Dots Calendar Dots
ID idkiplkpioepnfaifnnlknbnafkhcine
官方URL https://chromewebstore.google.com/detail/calendar-dots/idkiplkpioepnfaifnnlknbnafkhcine
简介 Change Dot Color to Reflect Event Tag Color
文件大小 69.3 KB
安装次数 89
当前版本 0.6
更新时间 2019-12-10
上架时间 2019-12-10
开发者 afree1423
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Calendar Dots",
    "description": "Change Dot Color to Reflect Event Tag Color",
    "version": "0.6",
    "icons": {
        "16": "img\/icon16.png",
        "19": "img\/icon19.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "\/lib\/jquery.js",
                "js\/content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/ajax.googleapis.com\/"
    ]
}