Inbox Spotlight - for Outlook 365

Inbox Spotlight - for Outlook 365

Achieve Inbox Zero with your Outlook 365 email account using keyboard shortcuts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Inbox Spotlight - for Outlook 365",
  "version": "0.1.1",
  "description": "Achieve Inbox Zero with your Outlook 365 email account using keyboard shortcuts.",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "./assets/css/open-sesame.css",
        "./assets/css/toastr.min.css"
      ],
      "runAt": "document_end"
    }
  ],
  "icons": {
    "16": "InboxSpotlightLogo_16.png",
    "24": "InboxSpotlightLogo_24.png",
    "32": "InboxSpotlightLogo_32.png",
    "128": "InboxSpotlightLogo_128.png",
    "192": "InboxSpotlightLogo_192.png"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_icon": {
      "16": "InboxSpotlightLogo_16.png",
      "24": "InboxSpotlightLogo_24.png",
      "32": "InboxSpotlightLogo_32.png"
    },
    "default_title": "Inbox Spotlight"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/jquery-3.6.0.min.js",
        "assets/js/loader.js",
        "assets/js/open-sesame.js",
        "assets/js/open-sesame-modules.js",
        "assets/js/toastr.min.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "declarativeContent",
    "scripting"
  ],
  "host_permissions": [
    "https://outlook.live.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://outlook.live.com/*"
    ]
  }
}