Copy To Notion: Clip anything to Notion

Copy To Notion: Clip anything to Notion

Easily capture, organize, and access all your online clips directly in 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": "Copy To Notion: Clip anything to Notion",
  "short_name": "Copy To Notion",
  "description": "Easily capture, organize, and access all your online clips directly in Notion.",
  "version": "0.14.1",
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab",
    "scripting",
    "cookies"
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "src/SuccessPopup/index.html",
        "MultiSelection.js",
        "ScreenCapture.js",
        "assets/*"
      ],
      "use_dynamic_url": false
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://copytonotion.com/*"
    ]
  },
  "action": {
    "default_icon": {
      "16": "icon-16.png",
      "48": "icon-48.png",
      "128": "icon-128.png"
    },
    "default_popup": "src/popup/index.html",
    "default_title": "Clip to Notion"
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "commands": {
    "copyCaptureToNotion": {
      "suggested_key": {
        "default": "Ctrl+Shift+H",
        "mac": "Command+Shift+H"
      },
      "description": "Take a screenshot"
    },
    "bookmarkUrlToNotion": {
      "suggested_key": {
        "default": "Ctrl+Shift+U",
        "mac": "Command+Shift+U"
      },
      "description": "Bookmark URL"
    },
    "makeACommentToNotion": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      },
      "description": "Save URL with Note"
    },
    "fullScreenshotToNotion": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      },
      "description": "Take a full screenshot"
    },
    "copyTextToNotion": {
      "description": "Save selected text"
    },
    "multiSelectToNotion": {
      "description": "Multi select"
    },
    "_execute_action": {}
  }
}