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
官方網址 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"
        }
    ]
}