Simple Notepad

Simple Notepad

Make notes and sync them. What could be more simple?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Simple Notepad",
  "version": "1.5.3",
  "manifest_version": 2,
  "description": "Make notes and sync them. What could be more simple?",
  "options_page": "options.html",
  "icons": {
    "16": "img/icon16x16.png",
    "48": "img/icon48x48.png",
    "128": "img/icon128x128.png"
  },
  "browser_action": {
    "default_icon": "img/default_icon.png",
    "default_title": "Simple Notepad",
    "default_popup": "notes_view.html"
  },
  "minimum_chrome_version": "18.0",
  "background": {
    "page": "background.html"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "bookmarks",
    "contextMenus"
  ],
  "offline_enabled": true
}