Blipshot: one click full page screenshots

Blipshot: one click full page screenshots

Real fast and simple one-click full-page screenshots with drag and drop.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Blipshot: one click full page screenshots",
  "short_name": "Blipshot",
  "version": "1.2.7",
  "description": "Real fast and simple one-click full-page screenshots with drag and drop.",
  "author": "Erin Casali",
  "browser_action": {
    "default_icon": {
      "19": "icon/toolbar-icon19.png",
      "38": "icon/toolbar-icon38.png"
    }
  },
  "icons": {
    "16": "icon/icon16.png",
    "32": "icon/icon32.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.png"
  },
  "background": {
    "scripts": [
      "screenshotter.js",
      "actions.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "screenshotter.DOM.js",
        "blanketStyleSet.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "resources/overlay.html"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}