Bookmarker for Notion

Bookmarker for Notion

Eye-candy 21st century bookmarks, straight into your notion workspace

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bookmarker for Notion",
  "author": "Zeppelin Labs",
  "version": "0.1.7",
  "description": "Eye-candy 21st century bookmarks, straight into your notion workspace",
  "homepage_url": "https://bookmarkerfornotion.com/",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_title": "Open the popup",
    "default_popup": "app.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "scripting"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "app.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}