Local Storage

Local Storage

Utilizes local storage to save user notes within the browser, ensuring that notes are securely stored and accessible only to the user without relying on external servers or cloud storage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.0",
  "icons": {
    "64": "icons/logo_64.png",
    "128": "icons/logo_128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "91.1.0",
      "id": "{95c65347-c700-4dbf-b014-2f4a7e135ac4}"
    }
  },
  "sidebar_action": {
    "default_icon": "icons/logo_64.png",
    "default_title": "__MSG_extensionName__",
    "default_panel": "sidebar/panel.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "commands": {
    "_execute_sidebar_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      }
    }
  }
}