RP1Cloud for Google Calendar

RP1Cloud for Google Calendar

Use RP1Cloud video conferencing in your Google Calendar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RP1Cloud for Google Calendar",
  "description": "Use RP1Cloud video conferencing in your Google Calendar",
  "version": "1.1",
  "icons": {
    "128": "rp1-icon.png"
  },
  "browser_action": {
    "default_icon": "rp1-icon.png",
    "default_popup": "index.html",
    "default_title": "RP1Cloud for Google Calendar"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "js": [
        "gcal_bundle.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "chrome-event_bundle.js"
    ],
    "persistent": false
  },
  "permissions": [
    "https://calendar.google.com/*",
    "https://sched.rp1cloud.com/*"
  ],
  "web_accessible_resources": [
    "assets/*"
  ]
}