Do What Matters Most Planner

Do What Matters Most Planner

Pre-Week Planning Chrome Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Do What Matters Most Planner",
  "description": "Pre-Week Planning Chrome Extension",
  "version": "1.0.27",
  "manifest_version": 3,
  "icons": {
    "128": "images/icon_128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "fonts/*"
      ],
      "matches": [
        "https://calendar.google.com/*",
        "https://outlook.live.com/*",
        "https://outlook.office.com/*",
        "https://outlook.office365.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://*.becomingyourbest.com/*",
    "https://api.sparkpost.com/*"
  ],
  "permissions": [
    "storage",
    "notifications",
    "cookies"
  ],
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "https://calendar.google.com/*",
        "https://outlook.live.com/*",
        "https://outlook.office.com/*",
        "https://outlook.office365.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_idle"
    }
  ]
}