Open in Notion

Open in Notion

Open share links in your desktop app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Open in Notion",
  "version": "0.1.5.6",
  "description": "Open share links in your desktop app.",
  "icons": {
    "16": "icons/icon-ext-16.png",
    "48": "icons/icon-ext-48.png",
    "128": "icons/icon-ext-128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon-on-16.png",
      "32": "icons/icon-on-32.png",
      "48": "icons/icon-on-48.png",
      "128": "icons/icon-on-128.png"
    },
    "default_title": "Open in Notion"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.notion.so/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "*://*.notion.so/*"
  ],
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}