Google Calendar Gray Weekends

Turn weekend days light gray in Google Calendar

什么是Google Calendar Gray Weekends?

Google Calendar Gray Weekends是由msteffen.developer开发的Chrome扩展程序,该扩展的主要功能是“Turn weekend days light gray in Google Calendar”。

扩展截图

screenshot

下载Google Calendar Gray Weekends扩展crx文件

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

扩展使用说明

                        Sets the background color of weekend days to light gray in Google calendar

Very simple, and currently US/English only (it has "Saturday" and "Sunday" hard-coded). Source is at https://github.com/msteffen/gcal-gray-weekends (you can report bugs as well)                    

扩展基本信息

名称 Google Calendar Gray Weekends Google Calendar Gray Weekends
ID anbpifeeedchofljolkgmleojmelihom
官方URL https://chromewebstore.google.com/detail/google-calendar-gray-week/anbpifeeedchofljolkgmleojmelihom
简介 Turn weekend days light gray in Google Calendar
文件大小 6.77 KB
安装次数 2,544
当前版本 0.1.1
更新时间 2019-04-29
上架时间 2019-04-29
评分 4.61/5 共18次评分
开发者 msteffen.developer
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/msteffen/gcal-gray-weekends
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Calendar Gray Weekends",
    "version": "0.1.1",
    "description": "Turn weekend days light gray in Google Calendar",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}