Scrolling Screenshot & Website Annotation App

Scrolling Screenshot & Website Annotation App

The best full page scrolling screenshot annotation tool. Add drawings, arrows, text & signatures. Share links & export to PDF.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Scrolling Screenshot & Website Annotation App",
  "version": "1.3.0",
  "description": "The best full page scrolling screenshot annotation tool. Add drawings, arrows, text & signatures. Share links & export to PDF.",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "./js/content-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/mh-g16.png",
      "32": "assets/mh-g32.png",
      "48": "assets/mh-g48.png",
      "128": "assets/mh-g128.png"
    }
  },
  "icons": {
    "16": "assets/mh-g16.png",
    "32": "assets/mh-g32.png",
    "48": "assets/mh-g48.png",
    "128": "assets/mh-g128.png"
  },
  "permissions": [
    "storage",
    "clipboardWrite",
    "activeTab",
    "tabs",
    "desktopCapture",
    "notifications",
    "scripting"
  ],
  "host_permissions": [
    "https://markuphero.com/",
    "https://storage.googleapis.com/",
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.markuphero.com/*",
      "*://localhost/*"
    ]
  },
  "commands": {
    "take-area-screenshot": {
      "suggested_key": {
        "default": "Alt+Shift+1",
        "mac": "Alt+Shift+1"
      },
      "description": "Takes screenshot of selected area & uploads to Markup Hero"
    },
    "take-tab-screenshot": {
      "suggested_key": {
        "default": "Alt+Shift+2",
        "mac": "Alt+Shift+2"
      },
      "description": "Takes screenshot of current tab & uploads to Markup Hero"
    },
    "take-scrolling-screenshot": {
      "suggested_key": {
        "default": "Alt+Shift+3",
        "mac": "Alt+Shift+3"
      },
      "description": "Takes scrolling screenshot & uploads to Markup Hero"
    },
    "open-markups": {
      "suggested_key": {
        "default": "Alt+Shift+4",
        "mac": "Alt+Shift+4"
      },
      "description": "Opens new tab that allows you to upload images or PDF for annotation"
    }
  }
}