Screenshot Master: Full Page Capture

Screenshot Master: Full Page Capture

Easy, free and full-featured screenshot app to capture, edit and save your screenshots effortlessly.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.7",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "icons": {
    "128": "logo.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "logo.png"
    }
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "capture.html",
    "capture.js"
  ],
  "permissions": [
    "storage",
    "notifications",
    "contextMenus",
    "<all_urls>"
  ]
}