Notion2HtmlEmail

Notion2HtmlEmail

Seamlessly convert your Notion page layout to an HTML email template.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Notion2HtmlEmail",
  "description": "Seamlessly convert your Notion page layout to an HTML email template.",
  "version": "0.0.0.1",
  "permissions": [
    "https://www.notion.so/*",
    "cookies"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Notion2HtmlEmail"
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.notion.so/*"
      ],
      "js": [
        "js/beautify-html.js",
        "js/content.js"
      ]
    }
  ]
}