Chatwhizz Screenshot & Screen Recorder

Chatwhizz Screenshot & Screen Recorder

The best tool to capture the screenshot, record your screen. Annotate the videos & screenshots. An easy-generating link to share.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chatwhizz Screenshot & Screen Recorder",
  "version": "1.0.5",
  "description": "The best tool to capture the screenshot, record your screen. Annotate the videos & screenshots. An easy-generating link to share.",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_popup": "options.html",
    "default_icon": "images/icon_128x128.png",
    "default_title": "Chatwhizz Screenshot & Screen Recorder"
  },
  "icons": {
    "16": "images/icon_16x16.png",
    "32": "images/icon_32x32.png",
    "64": "images/icon_64x64.png",
    "128": "images/icon_128x128.png"
  },
  "commands": {
    "instant-capture": {
      "suggested_key": {
        "default": "Alt+Shift+N",
        "mac": "Alt+Shift+N"
      },
      "description": "Capture Now"
    },
    "start-stop-recording": {
      "suggested_key": {
        "default": "Alt+Shift+S",
        "mac": "Alt+Shift+S"
      },
      "description": "Start or stop recording"
    },
    "pause-resume-recording": {
      "suggested_key": {
        "default": "Alt+Shift+R",
        "mac": "Alt+Shift+R"
      },
      "description": "Pause or resume recording"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+Z",
        "mac": "Alt+Shift+Z"
      }
    }
  },
  "permissions": [
    "storage",
    "downloads",
    "scripting",
    "offscreen",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/recording-content-script.css"
      ],
      "js": [
        "js/recording-content-script.js",
        "js/fabric.min.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.chatwhizz.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/page-content-script.css",
        "js/media-sources.js",
        "media-sources.html",
        "/images/rec-tools-icon/rectangle.svg",
        "/images/rec-tools-icon/draw.svg",
        "/images/rec-tools-icon/arrow-up.svg",
        "/images/rec-tools-icon/pause.svg",
        "/images/rec-tools-icon/stop.svg",
        "/images/rec-tools-icon/minimize.svg",
        "/images/rec-tools-icon/camera-on.svg",
        "/images/rec-tools-icon/play.svg",
        "/images/rec-tools-icon/maximize.svg",
        "/images/rec-tools-icon/cancel.svg",
        "/images/rec-tools-icon/blur.svg",
        "/images/rec-tools-icon/camera-off.svg",
        "/images/rec-tools-icon/clear.svg",
        "/images/rec-tools-icon/discard.svg"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "incognito": "split",
  "manifest_version": 3
}