Notion - Add to calendar

Notion - Add to calendar

This extension create a link for save notion event in google calendar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "2.0.3",
  "name": "Notion - Add to calendar",
  "description": "This extension create a link for save notion event in google calendar",
  "offline_enabled": true,
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.notion.so/*",
        "*://*.notion.site/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{cb2880eb-b2bc-4925-85c5-78d698d6a917}"
    }
  }
}