G-calize

G-calize

On Google Calendar... Sunday, Saturday, Today, and other weekdays, You can select the text color and background color.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "G-calize",
  "default_locale": "ja",
  "description": "__MSG_extDes__",
  "version": "2.1.1",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "background": {
    "service_worker": "js/service-worker.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "optional_host_permissions": [
    "http://*.google.com/calendar/*",
    "https://*.google.com/calendar/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.google.com/calendar/*",
        "https://*.google.com/calendar/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "js/lit-html.min.js",
        "js/gcalize-i18n.js"
      ]
    }
  ],
  "action": {
    "default_title": "G-calize: Open Settings"
  },
  "icons": {
    "16": "img/icon_16.png",
    "19": "img/icon_19.png",
    "48": "img/icon_48.png",
    "96": "img/icon_96.png",
    "128": "img/icon_128.png"
  }
}