Applitools Centra Screenshot Capture

Applitools Centra Screenshot Capture

Take a screenshot and save it to your system clipboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Applitools Centra Screenshot Capture",
  "description": "Take a screenshot and save it to your system clipboard",
  "version": "1.0.1",
  "version_name": "1.0.1",
  "action": {
    "default_title": "Click to capture screenshot to system clipboard"
  },
  "icons": {
    "16": "assets/ChromeExt_16_LightBG.png",
    "32": "assets/ChromeExt_32LightBG.png",
    "48": "assets/ChromeExt_80_LightBG.png",
    "128": "assets/ChromeExt_126_LightBG.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "tabs",
    "storage",
    "clipboardWrite",
    "contextMenus",
    "notifications"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}