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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}