ImageCap - image download and capture

ImageCap - image download and capture

An usefull tool for image download & full page screen capture

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.20.1",
  "default_locale": "en",
  "manifest_version": 2,
  "short_name": "__MSG_extShortName__",
  "description": "__MSG_extDescription__",
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus",
    "downloads",
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "config.js",
      "background_ajax.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "Q.js/Q.debug.js",
        "i18n.js",
        "content.js"
      ],
      "css": [
        "Q.js/ui.css",
        "wayixia.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_title": "__MSG_extName__",
    "default_icon": "icon128.png",
    "default_popup": "popup.html"
  },
  "commands": {
    "toggle-wa-all": {
      "suggested_key": {
        "default": "Ctrl+Q"
      },
      "description": "Toggle Wa all images"
    }
  }
}