Save to Notion

Save to Notion

Save Anything to Notion

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Save to Notion",
  "short_name": "Save to Notion",
  "version": "2.89",
  "description": "Save the Web to Notion",
  "permissions": [
    "activeTab",
    "storage",
    "cookies",
    "contextMenus",
    "unlimitedStorage",
    "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_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+E",
        "mac": "Alt+Shift+E"
      }
    }
  },
  "content_scripts": [],
  "browser_action": {
    "default_title": "Notion Saver"
  },
  "icons": {
    "48": "./assets/icon48.png",
    "128": "./assets/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "popup/index.html",
    "modal/modal.html",
    "toast/toast.html",
    "assets/*.js",
    "pageWorld.js"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-...='; object-src 'self'; ; connect-src https://*.notion.so https://*.amazonaws.com https://*.posthog.com https://*.twitter.com https://twitter.com",
  "browser_specific_settings": {
    "gecko": {
      "id": "{bd40e25c-7e66-4602-b8ef-35b979b78cbb}"
    }
  }
}