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开发的Chrome扩展程序,该扩展的主要功能是“Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯”。

扩展截图

screenshot
screenshot
screenshot

下载Shade non-working hours for Google Calendar扩展crx文件

下载Shade non-working hours for Google Calendar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}