Pomodoro Timer for Google Calendar

Pomodoro Timer for Google Calendar

Boost focus with our tool that integrates the Pomodoro technique into your Google Calendar events.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Pomodoro Timer for Google Calendar",
  "version": "0.0.4",
  "description": "Boost focus with our tool that integrates the Pomodoro technique into your Google Calendar events.",
  "permissions": [
    "storage",
    "notifications"
  ],
  "options_page": "src/pages/options/index.html",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://calendar.google.com/*",
        "*://www.google-analytics.com/*"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "css": [
        "assets/css/contentStyle17149769042.chunk.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}