Bookmarks to Notion

Bookmarks to Notion

Sync Browser Bookmarks with Notion Database. Centralize your bookmarks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_ext_fulltitle__",
  "description": "__MSG_ext_description__",
  "manifest_version": 3,
  "version": "2.3.1",
  "permissions": [
    "storage",
    "bookmarks"
  ],
  "default_locale": "en",
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/icon16.png",
      "32": "assets/icon32.png",
      "48": "assets/icon48.png",
      "128": "assets/icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "home.html",
  "host_permissions": [
    "https://*.bookmarkstonotion.com/",
    "https://api.notion.com/"
  ],
  "externally_connectable": {
    "matches": [
      "http://127.0.0.1:3000/*",
      "https://*.bookmarkstonotion.com/*"
    ]
  }
}