Q Pad

Q Pad

The simple notepad.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Q Pad",
  "version": "1.0.0",
  "description": "The simple notepad.",
  "icons": {
    "16": "images/qpad-16.png",
    "128": "images/qpad-128.png"
  },
  "permissions": [
    "tabs",
    "*://*/*"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "vendor/angular/angular.js",
      "scripts/events.js",
      "scripts/wrapped-storage.js",
      "scripts/app.js",
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_title": "Q Pad",
    "default_icon": "images/qpad-19.png"
  },
  "options_page": "options-page/index.html"
}