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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Shade non-working hours for Google Calendar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/
सहायता पृष्ठ URL 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"
    }
}