Minimal Text Editor

Minimal Text Editor

A minimal, lightweight, offline text editor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Minimal Text Editor",
  "version": "1.03",
  "description": "A minimal, lightweight, offline text editor.",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_title": ""
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "newtab.html",
    "newtab.css",
    "js/newtab.js"
  ],
  "permissions": [
    "storage"
  ]
}