Google Calendar Gray Weekends

Google Calendar Gray Weekends

Turn weekend days light gray in Google Calendar

Merlin
Additional files are visible only to premium users

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