Save to FileCloud

Save images, web content and screen capture to FileCloud
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescr__",
  "version": "1.6.2",
  "manifest_version": 2,
  "minimum_chrome_version": "40",
  "default_locale": "en",
  "icons": {
    "16": "img/ext_icons/16.png",
    "19": "img/ext_icons/19.png",
    "38": "img/ext_icons/38.png",
    "48": "img/ext_icons/48.png",
    "128": "img/ext_icons/128.png"
  },
  "background": {
    "scripts": [
      "js/config.js",
      "js/utils.js",
      "js/helpers/log.js",
      "js/screenshot-background.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "19": "img/ext_icons/19.png",
      "38": "img/ext_icons/38.png"
    },
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "web_accessible_resources": [
    "img/*"
  ],
  "permissions": [
    "*://*/*",
    "<all_urls>",
    "cookies",
    "storage",
    "contextMenus",
    "activeTab",
    "tabs"
  ]
}