Custom Week Number - Google Calendar

Extension to set custom week number for Google calendar

What is Custom Week Number - Google Calendar?

Custom Week Number - Google Calendar is a Chrome extension developed by zf, and its main feature is "Extension to set custom week number for Google calendar".

Extension Screenshots

screenshot
screenshot

Download Custom Week Number - Google Calendar Extension CRX File

Download Custom Week Number - Google Calendar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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)                    

Extension Basic Information

Name Custom Week Number - Google Calendar Custom Week Number - Google Calendar
ID fjaidefhllhbbhlfnnopcoljnhimiakp
Official URL https://chromewebstore.google.com/detail/custom-week-number-google/fjaidefhllhbbhlfnnopcoljnhimiakp
Description Extension to set custom week number for Google calendar
File Size 112 KB
Installation Count 246
Current Version 2.0.0
Last Updated 2023-02-18
Publish Date 2023-02-13
Developer zf
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}