eXp World

eXp World

Provides Google Calendar integration with eXp World, and lets you view your eXp home area in the toolbar!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "eXp World",
  "description": "Provides Google Calendar integration with eXp World, and lets you view your eXp home area in the toolbar!",
  "version": "1.1",
  "manifest_version": 3,
  "action": {
    "default_title": "eXp World",
    "default_popup": "popup.html",
    "default_icon": {
      "128": "/icon.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "css": [
        "calendar.css"
      ],
      "js": [
        "calendar.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "128": "/icon.png"
  }
}