Productive Outlook

Productive Outlook

Display presence and productive time on Outlook and Teams calendar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Productive Outlook",
  "description": "Display presence and productive time on Outlook and Teams calendar.",
  "version": "0.1.20",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {},
  "options_page": "options.html",
  "sandbox": {
    "pages": [
      "sandbox/index.html"
    ]
  },
  "background": {
    "service_worker": "background.mjs",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://outlook.office.com/*"
      ],
      "js": [
        "toast/vanilla-toast.js",
        "introjs/intro.min.js",
        "outlook/outlook-content.js"
      ],
      "css": [
        "toast/vanilla-toast.css",
        "introjs/introjs.min.css",
        "shared/content.css",
        "outlook/outlook-content.css"
      ]
    },
    {
      "matches": [
        "https://teams.microsoft.com/multi-window/*"
      ],
      "all_frames": true,
      "js": [
        "toast/vanilla-toast.js",
        "introjs/intro.min.js",
        "teams/teams-content.js"
      ],
      "css": [
        "toast/vanilla-toast.css",
        "introjs/introjs.min.css",
        "shared/content.css",
        "teams/teams-content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://outlook.office.com/*"
      ],
      "resources": [
        "icon128.png",
        "shared/*.mjs",
        "outlook/*.mjs"
      ]
    },
    {
      "matches": [
        "https://teams.microsoft.com/*"
      ],
      "resources": [
        "icon128.png",
        "shared/*.mjs",
        "teams/*.mjs"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}