Chrome Notepad

Chrome Notepad

A simple notepad with bold, italic and underline to be used as a Chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrome Notepad",
  "description": "A simple notepad with bold, italic and underline to be used as a Chrome extension",
  "version": "1.7",
  "author": "Daniel Zotti",
  "icons": {
    "16": "images/chrome-notepad-icon_16.png",
    "48": "images/chrome-notepad-icon_48.png",
    "128": "images/chrome-notepad-icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Chrome Notepad",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/chrome-notepad-icon_16.png",
      "48": "images/chrome-notepad-icon_48.png",
      "128": "images/chrome-notepad-icon_128.png"
    }
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "storage"
  ]
}