nbundle - App Store for Notion

nbundle - App Store for Notion

App Store for Notion. All apps live inside your Notion. You don't have to open another app or browser tab to use them. Just Notion.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "nbundle - App Store for Notion",
  "description": "App Store for Notion. All apps live inside your Notion. You don't have to open another app or browser tab to use them. Just Notion.",
  "icons": {
    "16": "/icon16.png",
    "32": "/icon32.png",
    "48": "/icon48.png",
    "128": "/icon128.png"
  },
  "host_permissions": [
    "https://www.notion.so/",
    "https://chrome.google.com/webstore/*"
  ],
  "permissions": [
    "storage",
    "cookies",
    "management"
  ],
  "background": {
    "service_worker": "scripts/worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.notion.so/*"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "extension_ids": [],
      "matches": [
        "https://www.notion.so/*"
      ],
      "resources": [
        "preload.css",
        "preload.js",
        "app.js",
        "assets/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://www.notion.so/*"
    ]
  },
  "version": "1.0.109"
}