Zenclip - Save to Notion

Zenclip - Save to Notion

Save to Notion from anywhere on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zenclip - Save to Notion",
  "description": "Save to Notion from anywhere on the web.",
  "version": "1.0.2",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_title": "Click to open"
  },
  "content_scripts": [
    {
      "js": [
        "build/content.js"
      ],
      "matches": [
        "<all_urls>",
        "http://localhost:3000/*"
      ]
    }
  ],
  "background": {
    "service_worker": "build/background.js"
  },
  "host_permissions": [
    "https://api.notion.com/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>",
        "*://stackoverflow.com/*",
        "http://localhost:3000/*"
      ],
      "resources": [
        "build/main.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab"
  ],
  "manifest_version": 3
}