Chrome Notepad

Chrome Notepad

Use notepad in your chrome!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome Notepad",
  "version": "1.2.0",
  "manifest_version": 2,
  "description": "Use notepad in your chrome!",
  "icons": {
    "192": "logo192.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "logo192.png",
    "default_popup": "popup.html"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "options_page": "index.html"
}