Add MY Documents

Add MY Documents

Adding a Personal Folder in Chrome OS

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Add MY Documents",
  "description": "Adding a Personal Folder in Chrome OS",
  "minimum_chrome_version": "42",
  "version": "1.4",
  "app": {
    "background": {
      "scripts": [
        "js/background.js"
      ]
    }
  },
  "icons": {
    "16": "img/icon16.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "fileSystemProvider"
  ],
  "file_system_provider_capabilities": {
    "configurable": false,
    "watchable": false,
    "multiple_mounts": true,
    "source": "file"
  }
}