Auto My Day in Outlook 365

Auto My Day in Outlook 365

Automatic open the My day panel (agenda) in MS Office 365 Outlook

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Auto My Day in Outlook 365",
  "version": "1.0",
  "description": "Automatic open the My day panel (agenda) in MS Office 365 Outlook",
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.office365.com/mail/*",
        "https://*.office.com/mail/*",
        "https://*.office365.com/owa/*",
        "https://*.office.com/owa/*"
      ],
      "js": [
        "funkce.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_title": "Auto My Day in Outlook 365",
    "default_icon": "icon.png",
    "default_popup": "background.html"
  }
}