Custom Week Number - Google Calendar

Extension to set custom week number for Google calendar

ما هو Custom Week Number - Google Calendar؟

Custom Week Number - Google Calendar هو إضافة Chrome تم تطويرها بواسطة zf، والميزة الرئيسية لها هي "Extension to set custom week number for Google calendar".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Custom Week Number - Google Calendar

قم بتنزيل ملفات الامتداد Custom Week Number - Google Calendar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}