Obsidian Web

Obsidian Web

Connect your browser with your notes in Obsidian. Obsidian Web is a customizable web clipper for Obsidian with advanced features.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Obsidian Web",
  "description": "Connect your browser with your notes in Obsidian. Obsidian Web is a customizable web clipper for Obsidian with advanced features.",
  "version": "3.3.4",
  "options_page": "options.html",
  "background": {
    "service_worker": "js/background.js"
  },
  "sandbox": {
    "pages": [
      "handlebars.html"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png",
    "256": "icon256.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+O"
      }
    }
  },
  "action": {
    "default_title": "Take Note",
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png",
      "256": "icon256.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "options.html",
        "handlebars.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "optional_permissions": [
    "tabs"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "optional_host_permissions": [
    "https://*:27124/*",
    "http://*:27123/*",
    "https://*/*",
    "http://*/*"
  ]
}