Annotation, Full Page Capture & Snipping Tool

Annotation, Full Page Capture & Snipping Tool

Instacap is a screenshot editor & annotation tool for full page screen capture, pdf annotation & more—for instant visual feedback

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Annotation, Full Page Capture & Snipping Tool",
  "version": "3.2.4",
  "version_name": "wilson-3.2.4",
  "description": "Instacap is a screenshot editor & annotation tool for full page screen capture, pdf annotation & more—for instant visual feedback",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "assets/img/icon_extension/16_disable.png",
      "32": "assets/img/icon_extension/32_disable.png",
      "48": "assets/img/icon_extension/48_disable.png",
      "128": "assets/img/icon_extension/128_disable.png"
    },
    "default_title": "instacap"
  },
  "icons": {
    "16": "assets/img/icon_extension/16.png",
    "32": "assets/img/icon_extension/32.png",
    "48": "assets/img/icon_extension/48.png",
    "128": "assets/img/icon_extension/128.png"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+1",
        "mac": "Command+Shift+1",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      }
    }
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "identity",
    "identity.email",
    "scripting"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.instacap.co/*",
      "*://localhost/*"
    ]
  }
}