Crypto Notepad

Crypto Notepad

A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Crypto Notepad",
  "version": "0.0.5",
  "manifest_version": 2,
  "description": "A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "Crypto Notes",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' http://localhost:8098; object-src 'self'"
}