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によって開発されたChromeの拡張機能で、その主な機能は「Extension to set custom week number for Google calendar」です。

拡張機能のスクリーンショット

screenshot
screenshot

Custom Week Number - Google Calendar拡張機能のCRXファイルをダウンロード

Custom Week Number - Google Calendar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}