Noter

Noter

Save knowledge from internet to Notion with just keyboard shortcuts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Noter",
  "description": "Save knowledge from internet to Notion with just keyboard shortcuts",
  "version": "1.5.2",
  "manifest_version": 3,
  "icons": {
    "16": "icons/noter16.png",
    "32": "icons/noter32.png",
    "128": "icons/noter128.png"
  },
  "action": {
    "default_icon": "icons/noter128.png",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "highlight-to-notion": {
      "suggested_key": {
        "default": "Ctrl+H",
        "mac": "Command+H"
      },
      "description": "Save selected text to Notion"
    },
    "comment-to-notion": {
      "suggested_key": {
        "default": "Ctrl+J",
        "mac": "Command+J"
      },
      "description": "Add comments and save them to Notion"
    }
  },
  "options_page": "setup.html",
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "activeTab",
    "identity",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "exclude_matches": [
        "https://*.notion.so/*",
        "https://*.mem.ai/*",
        "https://*.google.com/*",
        "https://*.slack.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}