Gmail to Notion

Gmail to Notion

Save emails from Gmail to Notion. Multiple databases and file attachments supported

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gmail to Notion",
  "version": "0.1.4",
  "author": "Productivity Tools",
  "manifest_version": 3,
  "description": "Save emails from Gmail to Notion. Multiple databases and file attachments supported",
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://*.google.com/*",
    "https://api.notion.com/*",
    "https://api.productivitytools.nl/*",
    "https://*.mixpanel.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.notion-marketplace.com/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "scrapeEmail.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/spinner.gif"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "icons": {
    "16": "assets/ext-icon.png",
    "48": "assets/ext-icon.png",
    "128": "assets/ext-icon.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/ext-icon.png",
      "24": "assets/ext-icon.png",
      "32": "assets/ext-icon.png"
    },
    "default_title": "Email to Notion",
    "default_popup": "popup.html"
  }
}