Screen Recorder and Screenshot Tool

Screen Recorder and Screenshot Tool

Screen capture and screen recorder tool to record screen. Get more out of your screen captures! Take screenshots for free.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "short_name": "__MSG_name__",
  "manifest_version": 3,
  "default_locale": "en",
  "version": "1.4",
  "action": {
    "default_icon": {
      "16": "icons/icon-16_x_16.png",
      "32": "icons/icon-32_x_32.png",
      "64": "icons/icon-64_x_64.png",
      "128": "icons/icon-128_x_128.png"
    },
    "default_title": "__MSG_title__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon-16_x_16.png",
    "32": "icons/icon-32_x_32.png",
    "64": "icons/icon-64_x_64.png",
    "128": "icons/icon-128_x_128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./libs/jquery.min.js",
        "./libs/jquery.Jcrop.min.js",
        "./js/content.js"
      ],
      "css": [
        "./libs/jquery.Jcrop.min.css",
        "./css/content.css"
      ],
      "all_frames": false
    }
  ],
  "permissions": [
    "downloads",
    "storage",
    "unlimitedStorage",
    "tabCapture",
    "desktopCapture",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "commands": {
    "whole": {
      "suggested_key": {
        "default": "Alt+E",
        "mac": "Command+E"
      },
      "description": "Capture whole page"
    },
    "visible": {
      "suggested_key": {
        "default": "Alt+J",
        "mac": "Command+J"
      },
      "description": "Capture visible area"
    },
    "selected": {
      "suggested_key": {
        "default": "Alt+K",
        "mac": "Command+K"
      },
      "description": "Capture selected area"
    }
  }
}