Calendar Dots

Change Dot Color to Reflect Event Tag Color

Calendar Dotsคืออะไร?

Calendar Dots เป็นส่วนขยายของ Chrome ที่พัฒนาโดย afree1423 และคุณลักษณะหลักของมันคือ "Change Dot Color to Reflect Event Tag Color"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Calendar Dots

ดาวน์โหลดไฟล์ส่วนขยาย 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\/"
    ]
}