manifest.json 865 Bytes
{
  "name": "draw.io for Notion",
  "version": "1.0.9",
  "description": "Insert draw.io diagrams in Notion pages and edit them",
  "permissions": [
  	"storage",
  	"declarativeContent",
  	"https://*.notion.so/*"
  ],
  "background": {
    "scripts": ["background.js"],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": ["https://*.notion.so/*"],
      "all_frames": true,
      "run_at": "document_end",
      "js": ["contentScript.js"]
    }
  ],
  "page_action": {
    "default_icon": {
      "16": "images/logo16.png",
      "32": "images/logo32.png",
      "48": "images/logo48.png",
      "128": "images/logo128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "manifest_version": 2
}