domainNote - website notes in side panel

domainNote - website notes in side panel

domain-wise markdown notes in side panel. auto-sync notes with local disk and cloud. custom themes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "minimum_chrome_version": "114",
  "offline_enabled": true,
  "name": "domainNote - website notes in side panel",
  "short_name": "domainNote",
  "description": "domain-wise markdown notes in side panel. auto-sync notes with local disk and cloud. custom themes",
  "version": "0.0.4",
  "author": "NoteRail",
  "icons": {
    "16": "icon.png",
    "128": "icon_128.png"
  },
  "action": {
    "default_title": "Open domainNote"
  },
  "options_page": "options/index.html",
  "side_panel": {
    "default_path": "panel/index.html"
  },
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+W",
        "windows": "Alt+W",
        "mac": "Alt+W",
        "linux": "Alt+W"
      }
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/cropper/crop-box-PANTFBUI.js",
        "scripts/cropper/shot-cropper-QS2WOHXT.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://cloud.domainnote.noterail.site/*"
    ]
  },
  "permissions": [
    "sidePanel",
    "storage",
    "tabs",
    "contextMenus"
  ],
  "optional_permissions": [
    "scripting"
  ],
  "optional_host_permissions": [
    "<all_urls>"
  ]
}