yoichiro/chromeos-filesystem-dropbox

View on GitHub
src/manifest.json

Summary

Maintainability
Test Coverage
{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "__MSG_shortName__",
  "description": "__MSG_appDescription__",
  "version": "1.4.2",
  "default_locale": "en",
  "permissions": [
    "identity",
    "fileSystemProvider",
    "storage",
    "notifications",
    "alarms",
    "https://api.dropboxapi.com/",
    "https://content.dropboxapi.com/"
  ],
  "app": {
    "background": {
      "scripts": [
          "node_modules/jquery/dist/jquery.min.js",
          "scripts/metadata_cache.js",
          "scripts/http_fetcher.js",
          "scripts/dropbox_client.js",
          "scripts/dropbox_fs.js",
          "scripts/background.js"]
    }
  },
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "file_system_provider_capabilities": {
    "source": "network",
    "multiple_mounts": true,
    "watchable": true
  },
  "minimum_chrome_version": "49"
}