Shade non-working hours for Google Calendar

Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯

ما هو Shade non-working hours for Google Calendar؟

Shade non-working hours for Google Calendar هو إضافة Chrome تم تطويرها بواسطة Madeleine Smith Software، والميزة الرئيسية لها هي "Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Shade non-working hours for Google Calendar

قم بتنزيل ملفات الامتداد Shade non-working hours for Google Calendar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        About:
• This extension allows you to 'grey-out' your non-working hours in the day, week and '4 day' views of Google Calendar. 
• Use it to quickly see which hours of your day are blocked off for work and non-work time.

Usage instructions:
• Click into the extension to set your personal working hours 👩‍💻

Disclaimer:
• I'm in no way affiliated with Google or the Google Calendar brand 💯                    

معلومات أساسية عن التمديد

الاسم Shade non-working hours for Google Calendar Shade non-working hours for Google Calendar
ID hdlfamnpialfmlkddnmijnimciflhbjo
عنوان URL الرسمي https://chromewebstore.google.com/detail/shade-non-working-hours-f/hdlfamnpialfmlkddnmijnimciflhbjo
الوصف Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯
حجم الملف 24.88 MB
عدد التثبيتات 2,214
النسخة الحالية 1.4.0
آخر تحديث 2023-04-15
تاريخ النشر 2022-10-27
تقييم 4.46/5 مجموع تقييمات 13
المطور Madeleine Smith Software
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.madeleinesmith.uk/
عنوان صفحة المساعدة https://chrome.google.com/webstore/detail/shade-non-working-hours-f/hdlfamnpialfmlkddnmijnimciflhbjo?hl=en-GB&authuser=0
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shade non-working hours for Google Calendar",
    "action": {
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "version": "1.4.0",
    "description": "Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock \ud83d\udcaf",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}