HTML5FS File Editor

HTML5FS File Editor

An extension that can read the HTML5 file system and edit text based files.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HTML5FS File Editor",
  "version": "1.0.5",
  "description": "An extension that can read the HTML5 file system and edit text based files.",
  "browser_action": {
    "default_icon": "icons/icon48.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "unlimitedStorage"
  ]
}