Meeting Cost for Microsoft Outlook™

Meeting Cost for Microsoft Outlook™

Adds meeting costs to Outlook Calendar. Company configuration available through Flowtrace paid plans.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Meeting Cost for Microsoft Outlookâ„¢",
  "version": "1.0.13",
  "description": "Adds meeting costs to Outlook Calendar. Company configuration available through Flowtrace paid plans.",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "storage",
    "identity",
    "identity.email",
    "unlimitedStorage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "dataProxy.js",
        "styles.css"
      ],
      "matches": [
        "https://outlook.live.com/*",
        "https://outlook.office.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "dataTrigger.js",
        "content.js",
        "flowtraceUI.js"
      ],
      "matches": [
        "https://outlook.live.com/*",
        "https://outlook.office.com/*"
      ]
    }
  ],
  "oauth2": {
    "client_id": "a5f1adec-34f5-43fe-8fc1-caa58124a6d7",
    "scopes": [
      "openid",
      "email",
      "User.Read",
      "Calendars.ReadBasic",
      "Calendars.Read.Shared",
      "Calendars.Read",
      "offline_access"
    ]
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}