Jumpshare: Free Screen Recorder & Screenshots

Jumpshare: Free Screen Recorder & Screenshots

The best screen recorder, screenshot capture and annotation tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "offline_enabled": false,
  "version": "0.1.9",
  "manifest_version": 3,
  "default_locale": "en",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "assets/extension-icons/logo-32.png",
    "default_popup": "html/default.html"
  },
  "icons": {
    "16": "assets/extension-icons/logo-16.png",
    "48": "assets/extension-icons/logo-48.png",
    "128": "assets/extension-icons/logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/detect.js"
      ]
    }
  ],
  "permissions": [
    "desktopCapture",
    "activeTab",
    "tabCapture",
    "tabs",
    "storage",
    "identity",
    "scripting",
    "contextMenus",
    "downloads"
  ],
  "host_permissions": [
    "<all_urls>",
    "https://jumpshare.com/*",
    "https://jumptesting.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.jumpshare.com/*",
      "https://*.jumptesting.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "html/popup.html",
        "html/recorder.html",
        "html/camera.html",
        "html/sources.html",
        "html/settings.html",
        "js/content.js",
        "js/camera.js",
        "js/recording_content.js",
        "css/content.css",
        "assets/images/*",
        "js/sources.js",
        "js/cameracontent.js",
        "css/cameracontent.css",
        "js/libraries/plyr.min.js",
        "css/libraries/plyr.min.css",
        "js/audiosources.js",
        "html/audiosources.html",
        "html/autologin.html",
        "js/popup.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
  },
  "commands": {
    "record_video": {
      "suggested_key": {
        "default": "Alt+R",
        "mac": "Alt+R"
      },
      "description": "__MSG_extRecordVideo__"
    },
    "capture_screenshot": {
      "suggested_key": {
        "default": "Alt+C",
        "mac": "Alt+C"
      },
      "description": "__MSG_extCapureScreenShot__"
    },
    "stop": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "__MSG_extStop__"
    },
    "pause/resume": {
      "suggested_key": {
        "default": "Alt+P",
        "mac": "Alt+P"
      },
      "description": "__MSG_extPause__"
    }
  }
}