NotionExtensions

NotionExtensions

Your notion.so workspace, with all the missing features.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NotionExtensions",
  "version": "0.0.7",
  "description": "Your notion.so workspace, with all the missing features.",
  "icons": {
    "512": "assets/icons/icon-512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.notion.so/*"
      ],
      "js": [
        "src/entryPoint.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "512": "assets/icons/icon-512.png"
    },
    "default_popup": "src/popup.html",
    "default_title": "NotionExtensions"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/src/index.js"
      ],
      "matches": [
        "*://*.notion.so/*"
      ]
    }
  ]
}