Examine source code of Notion2HtmlEmail

Inspect and view changes in Notion2HtmlEmail source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
      ]
    }
  ]
}