Calendar Color Labels

Add configurable labels to Google Calendar event colors

Calendar Color Labels क्या है?

Calendar Color Labels oneself द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add configurable labels to Google Calendar event colors"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Calendar Color Labels एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Google Calendar offers the ability to color events on the a calendar.  However, it is often hard to remember which color is used for which events type.  This extension adds a configurable set of labels that can be used to add meaning to event colors.  The label will be displayed as a hint when you hover over the color when setting it. You can also set the color names themselves with is useful for using Google Calendar with languages other than English (which is the default).                    

एक्सटेंशन की मूल जानकारी

नाम Calendar Color Labels Calendar Color Labels
ID nhbijjgmjdfoppaoogknapfokimbgjbp
आधिकारिक URL https://chromewebstore.google.com/detail/calendar-color-labels/nhbijjgmjdfoppaoogknapfokimbgjbp
विवरण Add configurable labels to Google Calendar event colors
फ़ाइल का आकार 31.34 KB
स्थापना संख्या 4,325
वर्तमान संस्करण 1.0
अंतिम अपडेट 2022-05-24
प्रकाशन तिथि 2021-02-23
रेटिंग 2.77/5 कुल 26 रेटिंग्स
डेवलपर oneself
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/oneself/calendarcolorlabels
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Calendar Color Labels",
    "description": "Add configurable labels to Google Calendar event colors",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/calendar.google.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "shared.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/calendartaglabels16.png",
        "32": "\/images\/calendartaglabels32.png",
        "48": "\/images\/calendartaglabels48.png",
        "128": "\/images\/calendartaglabels128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/calendartaglabels16.png",
            "32": "\/images\/calendartaglabels32.png",
            "48": "\/images\/calendartaglabels48.png",
            "128": "\/images\/calendartaglabels128.png"
        }
    }
}