Miro for Google Calendar

Miro for Google Calendar

Attach and share Miro boards ahead of meetings and workshops

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Miro for Google Calendar",
  "version": "1.447",
  "description": "Attach and share Miro boards ahead of meetings and workshops",
  "icons": {
    "128": "images/miro-logo-main.png"
  },
  "permissions": [
    "cookies",
    "*://googlecalendar.miro-apps.com/"
  ],
  "background": {
    "scripts": [
      "js/jquery-1.12.4.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "css": [
        "css/miro.css"
      ],
      "js": [
        "js/jquery-1.12.4.js",
        "js/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "https://www.google.com/calendar/*",
        "https://calendar.google.com/calendar/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*",
    "fonts/*"
  ],
  "page_action": {
    "default_icon": "images/miro-logo-action.png"
  },
  "incognito": "not_allowed",
  "manifest_version": 2
}