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
官方網址 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\/"
    ]
}