Full Page Screenshots by IMG42

Full Page Screenshots by IMG42

Instantly capture fullpage, or partial screenshots. After capture they get uploaded to img42 for easy shareability.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Full Page Screenshots by IMG42",
  "description": "Instantly capture fullpage, or partial screenshots. After capture they get uploaded to img42 for easy shareability.",
  "manifest_version": 2,
  "version": "1.0.0",
  "minimum_chrome_version": "55",
  "browser_action": {
    "default_icon": "icons/38x38.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "scripts/Selector.js",
        "scripts/mousetrap.js",
        "scripts/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "32": "icons/38x38.png",
    "128": "icons/128x128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "<all_urls>"
  ]
}