dailyNote - take daily notes in side panel

dailyNote - take daily notes in side panel

Take daily notes in side panel with live-preview markdown note editor. dailyNote sync notes with local files, GDrive, OneDrive,Box

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": "123",
  "offline_enabled": true,
  "default_locale": "en",
  "name": "__MSG_extName__",
  "short_name": "dailyNote",
  "description": "__MSG_extDescription__",
  "version": "0.0.55",
  "author": "NoteRail",
  "icons": {
    "16": "icon.png",
    "128": "icon_128.png"
  },
  "action": {
    "default_title": "Open dailyNote"
  },
  "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+O",
        "windows": "Alt+O",
        "mac": "Alt+O",
        "linux": "Alt+O"
      }
    },
    "screenshot": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Capture screenshot"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/screenshot/crop-box-Q6FN6R7Y.js",
        "scripts/screenshot/shot-cropper-7YRZYKE2.css",
        "scripts/highlighter/Highlighter.js",
        "scripts/highlighter/highlighterCmd.js",
        "scripts/highlighter/HighlightRange-3C6JRVT3.js",
        "scripts/generator/md-generator.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://cloud.dailynote.noterail.site/*"
    ]
  },
  "optional_host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "sidePanel",
    "storage",
    "contextMenus",
    "activeTab",
    "scripting"
  ]
}