Calendar: Google Calendar, Microsoft Outlook

Calendar: Google Calendar, Microsoft Outlook

Stay organized with Google Calendar and Outlook calendar. Conference calls from Microsoft Teams, Google Meet, and Zoom.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appDesc__",
  "description": "__MSG_appDesc__",
  "manifest_version": 3,
  "default_locale": "en",
  "content_security_policy": {
    "content_scripts": "font-src 'self' data:; script-src 'self'; object-src 'self'; worker-src 'self'",
    "extension_pages": "font-src 'self' data:; script-src 'self'; object-src 'self'; worker-src 'self'"
  },
  "commands": {
    "commandToggleSidebar": {
      "suggested_key": {
        "windows": "Alt+X",
        "mac": "Alt+X",
        "chromeos": "Alt+X",
        "linux": "Alt+X"
      },
      "description": "ToggleSidebar"
    },
    "commandToggleCutTheClutter": {
      "suggested_key": {
        "windows": "Alt+C",
        "mac": "Alt+C",
        "chromeos": "Alt+C",
        "linux": "Alt+C"
      },
      "description": "WebpageCutTheClutter"
    }
  },
  "version": "3.0.0",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkMo/euMEZLAV9xiPSg3b22Pjw+nmezAK9gy3LMMpZzS6SA3fAwKAIK5q+NX9kYZgJB2eMepQCHdcyaKu/ygxSQ774jjul//un84MJahbkX/6fk5eLbbV5KOsC+K9kJMSBKCEF2w0lFFLrs/x4tX69MfoAPcZ9BojTsQqZrF6N4I8DQP71NwEJ7Fg5VY9fjUpwfyUd2FMMXKlNHU/1YsTgHWhvGV7qzm0CyumMXlAVrSQwpiwyGWCa0mB9MaHaV4MaBlpTg+hBe14ljOEDC8JwySXEizdd3bP1XieIaarh8CBDaoLSKeUsZf1gdu/EhlyDPDREyGowz3jC4uln9KF/QIDAQAB",
  "icons": {
    "16": "assets/apps/calendar/icon_128.png",
    "32": "assets/apps/calendar/icon_128.png",
    "48": "assets/apps/calendar/icon_128.png",
    "128": "assets/apps/calendar/icon_128.png"
  },
  "oauth2": {
    "client_id": "990704142214-g2qv7b6u2m25pcgujh07rvle9mutrj36.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/calendar",
      "https://www.googleapis.com/auth/tasks"
    ]
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "_favicon/*",
        "assets/*",
        "localization/*",
        "contentScript/*",
        "*"
      ],
      "use_dynamic_url": false
    }
  ],
  "action": {
    "default_icon": {
      "16": "assets/apps/calendar/icon_128.png",
      "32": "assets/apps/calendar/icon_128.png",
      "48": "assets/apps/calendar/icon_128.png",
      "128": "assets/apps/calendar/icon_128.png"
    }
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "side_panel": {
    "default_path": "sidePanel.html"
  },
  "permissions": [
    "storage",
    "cookies",
    "unlimitedStorage",
    "bookmarks",
    "contextMenus",
    "topSites",
    "alarms",
    "sidePanel",
    "notifications",
    "geolocation"
  ],
  "host_permissions": [],
  "optional_permissions": [
    "history",
    "downloads",
    "favicon",
    "tabs",
    "scripting",
    "declarativeNetRequestWithHostAccess",
    "identity"
  ],
  "optional_host_permissions": [
    "<all_urls>"
  ]
}