Add to Calendar (powered by AI)

Add to Calendar (powered by AI)

The most accurate and intelligent way to add events to your calendar from any webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Add to Calendar (powered by AI)",
  "description": "The most accurate and intelligent way to add events to your calendar from any webpage.",
  "author": "[email protected]",
  "version": "0.0.5",
  "manifest_version": 3,
  "action": {
    "default_title": "Add events to your calendar from any webpage with ease.",
    "default_popup": "index.html",
    "default_icon": "calicon.png"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "icons": {
    "16": "calicon-16x16.png",
    "48": "calicon-48x48.png",
    "128": "calicon-128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "scripting"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      }
    }
  }
}