Lock Note

Lock Note

Save encrypted notes in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Lock Note",
  "version": "0.1",
  "description": "Save encrypted notes in your browser.",
  "manifest_version": 2,
  "permissions": [],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png",
    "512": "icon.png"
  },
  "commands": {
    "lock-note-open": {
      "description": "Open Lock Note",
      "suggested_key": {
        "default": "Alt+L"
      },
      "global": true
    }
  }
}