Axure Cloud Extension

Axure Cloud Extension

Capture screenshots of your prototype to attach to Axure Cloud comments. When commenting, click the camera icon to add a screenshot.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Axure Cloud Extension",
  "version": "1.2.1",
  "description": "Capture screenshots of your prototype to attach to Axure Cloud comments. When commenting, click the camera icon to add a screenshot.",
  "action": {
    "default_icon": "cloud_16.png",
    "default_title": "Axure Cloud Screenshot Extension"
  },
  "permissions": [
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "axScreenshot.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "cloud_16.png",
    "32": "cloud_32.png",
    "64": "cloud_64.png",
    "128": "cloud_128.png"
  },
  "commands": {
    "shortcutScreenshot": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "mac": "Ctrl+Shift+1"
      },
      "description": "Create Screenshot via Keyboard"
    }
  }
}