Save to Notion

Save to Notion

Save the Web to Notion

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Save to Notion",
  "version": "2.99.6",
  "description": "Save the Web to Notion",
  "permissions": [
    "activeTab",
    "storage",
    "cookies",
    "scripting",
    "contextMenus",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://*.notion.so/*"
  ],
  "optional_permissions": [
    "tabs",
    "<all_urls>"
  ],
  "commands": {
    "add-highlights": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Add highlights to your Notion Page"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+E",
        "mac": "Alt+Shift+E"
      }
    }
  },
  "action": {
    "default_title": "Notion Saver"
  },
  "icons": {
    "48": "./assets/icon48.png",
    "128": "./assets/icon128.png"
  },
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup/index.html",
        "modal/modal.html",
        "toast/toast.html",
        "assets/*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  }
}