Custom Week Number - Google Calendar

Extension to set custom week number for Google calendar

Custom Week Number - Google Calendar क्या है?

Custom Week Number - Google Calendar zf द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to set custom week number for Google calendar"।

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

screenshot
screenshot

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

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

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

                        This is an extension to set custom week number for Google Calendar.

How to use? 
1. Install the extension 
2. Click the extension icon 
3. Enter first date of first week in the pop-up and click set

Features coming soon:
1. add support for custom views (only support month view for now)                    

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

नाम Custom Week Number - Google Calendar Custom Week Number - Google Calendar
ID fjaidefhllhbbhlfnnopcoljnhimiakp
आधिकारिक URL https://chromewebstore.google.com/detail/custom-week-number-google/fjaidefhllhbbhlfnnopcoljnhimiakp
विवरण Extension to set custom week number for Google calendar
फ़ाइल का आकार 112 KB
स्थापना संख्या 246
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2023-02-18
प्रकाशन तिथि 2023-02-13
डेवलपर zf
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom Week Number - Google Calendar ",
    "description": "Extension to set custom week number for Google calendar",
    "version": "2.0.0",
    "manifest_version": 3,
    "author": "zf",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Custom Week Number"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "jquery-3.6.3.min.js",
                "main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "main.js",
                "jquery-3.6.3.min.js",
                "pp.png"
            ],
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "logov2.png"
    }
}