Wholemeaning Email Manager

Wholemeaning Email Manager

Wholemeaning Email Manager

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wholemeaning Email Manager",
  "short_name": "Wholemeaning",
  "version": "2.7.6",
  "author": "Wholemeaning, Inc.",
  "minimum_chrome_version": "88",
  "description": "Wholemeaning Email Manager",
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "ContentScripts/Gmail.Loader.js",
        "ContentScripts/Loader.js"
      ]
    },
    {
      "matches": [
        "*://outlook.office.com/*",
        "*://outlook.office365.com/*"
      ],
      "js": [
        "ContentScripts/Outlook.Loader.js",
        "ContentScripts/Loader.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "ContentScripts/BackgroundEvents.js"
  },
  "externally_connectable": {
    "matches": [
      "*://outlook.office.com/*",
      "*://outlook.office365.com/*",
      "*://mail.google.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "profile.json",
        "Injection/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "32": "Injection/Resources/favicon.png"
    }
  },
  "icons": {
    "128": "Injection/Resources/logo128.png"
  },
  "host_permissions": [
    "*://mail.google.com/*",
    "*://outlook.office.com/*",
    "*://outlook.office365.com/*"
  ]
}