Engageable - Time block with Google Calendar

Engageable - Time block with Google Calendar

A mindful pulse for better attention.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.0.3",
  "name": "Engageable - Time block with Google Calendar",
  "description": "A mindful pulse for better attention.",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "js": [
        "src/pages/calendar/content/index.js"
      ],
      "css": [
        "assets/css/CalendarAppIndex16944188920.chunk.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css"
      ],
      "matches": [
        "https://calendar.google.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://getengageable.com/*"
    ]
  },
  "host_permissions": [
    "https://calendar.google.com/calendar/*",
    "https://getengageable.com/*"
  ],
  "permissions": [
    "storage",
    "scripting"
  ],
  "minimum_chrome_version": "92"
}