Calendar Dots

Change Dot Color to Reflect Event Tag Color

Calendar Dots là gì?

Calendar Dots là một tiện ích mở rộng Chrome được phát triển bởi afree1423, và tính năng chính của nó là "Change Dot Color to Reflect Event Tag Color".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Calendar Dots

Tải xuống các tệp mở rộng Calendar Dots dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Calendar Dots Calendar Dots
ID idkiplkpioepnfaifnnlknbnafkhcine
URL Chính Thức https://chromewebstore.google.com/detail/calendar-dots/idkiplkpioepnfaifnnlknbnafkhcine
Mô tả Change Dot Color to Reflect Event Tag Color
Kích Thước Tệp 69.3 KB
Số Lần Cài Đặt 89
Phiên Bản Hiện Tại 0.6
Cập Nhật Lần Cuối 2019-12-10
Ngày Phát Hành 2019-12-10
Nhà Phát Triển afree1423
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}