Reply with Calendar Invite by CakeAI

Reply with Calendar Invite by CakeAI

Built for Executive and their assistants. Use AI to reply to scheduling emails where replies contains contain a calendar invite link

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlR0EJd2mG/r6ryEzi0yLdDeFSrzugZbat/ZlskvH2shKkwJ523KxSJgrCh/Po05LvGTNW+a20b2IT17OZBTx3tCPvr11gjWbVqiAFfTNEnmTIE/KEs8hoJPirUBC5eAt5SiW0yizqZpIkW7uU3Siluntizjl8NIeZxZD+AwTWpQGDa6Emzh798ESSxoczCqQ1VerscnDj92Cr05J8dDzPmUMZN0IpeH5bQaahQoIYFmJe2rHsL/dyKLM/dSrZPQsI7mwMX3/Ig2ek84mtNmz0GIoH0VYzVGhzy9+jsCpgzOUl3yUM3n9oe9mfk7xw7DpVmBYCGcAXXoSV3bhrHhMaQIDAQAB",
  "name": "Reply with Calendar Invite by CakeAI",
  "short_name": "Reply with Calendar Invite by CakeAI",
  "description": "Built for Executive and their assistants. Use AI to reply to scheduling emails where replies contains contain a calendar invite link",
  "version": "0.1.0",
  "permissions": [
    "notifications",
    "storage"
  ],
  "background": {
    "service_worker": "worker.js",
    "type": "module"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "pages/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "pages/content.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "sandbox": {
    "pages": [
      "dashboard.html"
    ]
  },
  "action": {
    "default_icon": {
      "16": "assets/16.png",
      "32": "assets/32.png",
      "128": "assets/128.png"
    }
  },
  "options_page": "pages/dashboard.html",
  "icons": {
    "16": "assets/16.png",
    "32": "assets/32.png",
    "128": "assets/128.png"
  }
}