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
Eメール [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\/"
    ]
}