Do What Matters Most Student Planner

Do What Matters Most Student Planner

The extension allows students to list their classes, list key tasks, and organize priorities.

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 Student Planner",
  "description": "The extension allows students to list their classes, list key tasks, and organize priorities.",
  "version": "1.0.1",
  "manifest_version": 3,
  "icons": {
    "128": "icons/icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/icons/*",
        "/fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "https://*.becomingyourbest.com/*"
  ],
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "https://calendar.google.com/*",
        "https://outlook.live.com/calendar/*",
        "https://outlook.office.com/calendar*",
        "https://outlook.office365.com/calendar*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_idle"
    }
  ]
}