EditShot

EditShot

An Extension to Edit A Webpage and then Exporting it as a Screenshot

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EditShot",
  "description": "An Extension to Edit A Webpage and then Exporting it as a Screenshot",
  "version": "0.1.1",
  "manifest_version": 2,
  "icons": {
    "16": "./icons/logo_16.png",
    "32": "./icons/logo_32.png",
    "48": "./icons/logo_48.png",
    "64": "./icons/logo_64.png",
    "128": "./icons/logo_128.png"
  },
  "browser_action": {
    "default_popup": "./pages/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./scripts/foreground.js",
        "./scripts/libs/html2canvas.js"
      ]
    }
  ]
}