FileCloud for Gmail

FileCloud for Gmail

Access FileCloud directly without leaving your Gmail window to send files and save attachments

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescr__",
  "version": "1.3.1",
  "manifest_version": 2,
  "minimum_chrome_version": "40",
  "default_locale": "en",
  "icons": {
    "16": "img/ext_icons/16.png",
    "48": "img/ext_icons/48.png",
    "128": "img/ext_icons/128.png"
  },
  "background": {
    "scripts": [
      "js/config.js",
      "js/helpers/log.js",
      "js/utils.js",
      "lib/blob-util.min.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "css": [
        "css/fcWalker.css"
      ],
      "js": [
        "lib/inboxsdk.js",
        "js/fcWalker.js",
        "js/gmailCS.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*"
  ],
  "permissions": [
    "<all_urls>",
    "cookies",
    "storage"
  ]
}