Notes

Notes

A whiteboard to write anything at any time. Sometimes you need to take quick notes on what is discussed during any meeting or phone…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notes",
  "version": "1.1",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html"
  },
  "icons": {
    "128": "logo.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://www.google-analytics.com/analytics.js; object-src 'self'"
}