Notepad

Notepad

A very simple notepad for Chrome with sync functionality.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Notepad",
  "description": "A very simple notepad for Chrome with sync functionality.",
  "background": {
    "scripts": [
      "js",
      "background.js"
    ],
    "persistent": true
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icons/19x19-local.png",
    "default_title": "Chrome Notepad",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "icons/48x48-local.png",
    "128": "icons/128x128-local.png"
  },
  "permissions": [
    "contextMenus",
    "bookmarks",
    "storage"
  ],
  "offline_enabled": true,
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://ssl.google-analytics.com https://www.googletagmanager.com; object-src 'self'",
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "6.1.1"
}