Vmaker - Free Screen Recorder

Vmaker - Free Screen Recorder

Asynchronous Video Messaging tool for all

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Vmaker - Free Screen Recorder",
  "name": "Vmaker - Free Screen Recorder",
  "version": "3.0.0",
  "manifest_version": 3,
  "homepage_url": "https://app.vmaker.com/dashboard/",
  "background": {
    "service_worker": "backgroundServiceWorker.js"
  },
  "description": "Asynchronous Video Messaging tool for all",
  "icons": {
    "16": "images/icons/tray_16.png",
    "48": "images/icons/tray_48.png",
    "128": "images/icons/tray_128.png"
  },
  "action": {
    "default_icon": {
      "19": "images/icons/tray_19.png",
      "38": "images/icons/tray_38.png"
    }
  },
  "commands": {
    "KEY_PAUSE_RESUME_RECORDING": {
      "suggested_key": {
        "default": "Shift+Ctrl+1",
        "mac": "Shift+Command+1",
        "windows": "Shift+Ctrl+1"
      },
      "description": "To pause or resume recording"
    },
    "KEY_STOP_RECORDING": {
      "suggested_key": {
        "default": "Shift+Ctrl+2",
        "mac": "Shift+Command+2",
        "windows": "Shift+Ctrl+2"
      },
      "description": "To stop recording"
    },
    "KEY_CANCEL_RECORDING": {
      "suggested_key": {
        "default": "Shift+Ctrl+X",
        "mac": "Shift+Command+X",
        "windows": "Shift+Ctrl+X"
      },
      "description": "To cancel recording"
    },
    "KEY_MUTE_UNMUTE_RECORDING": {
      "suggested_key": {
        "default": "Shift+Ctrl+U",
        "mac": "Shift+Command+U",
        "windows": "Shift+Ctrl+U"
      },
      "description": "To mute or unmute recording"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "/css/root.css"
      ],
      "js": [
        "/static/js/content.js"
      ]
    },
    {
      "js": [
        "/static/js/getWindow.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "js": [
        "/static/js/jira-content.js"
      ],
      "matches": [
        "https://*.jira-dev.com/*",
        "https://*.atlassian.net/*",
        "https://*.atlassian.com/*",
        "https://*.jira.com/*"
      ]
    },
    {
      "js": [
        "/static/js/google-meet-content.js"
      ],
      "matches": [
        "https://meet.google.com/**-**-**"
      ]
    },
    {
      "js": [
        "/static/js/github-content.js"
      ],
      "matches": [
        "https://github.com/*/pull/*",
        "https://github.com/*/compare/*",
        "https://github.com/*/issues/*",
        "https://github.com/*/wiki/*",
        "https://*.github.com/*"
      ]
    },
    {
      "js": [
        "pageWorld.js",
        "static/js/inboxsdk.js",
        "static/js/gmail-content.js"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "/static/js/gitlab-content.js"
      ],
      "matches": [
        "https://gitlab.com/*/*/-/merge_requests/*",
        "https://gitlab.com/*/*/-/merge_requests/*/diffs",
        "https://*.gitlab.com/*"
      ]
    },
    {
      "js": [
        "/static/js/intercom-content.js"
      ],
      "matches": [
        "https://app.intercom.com/*"
      ]
    },
    {
      "css": [
        "/static/css/hubspot-content.css"
      ],
      "js": [
        "/static/js/hubspot-content.js"
      ],
      "matches": [
        "https://*.hubspot.com/contacts/*"
      ]
    }
  ],
  "permissions": [
    "tabCapture",
    "activeTab",
    "tabs",
    "scripting",
    "storage",
    "desktopCapture",
    "notifications",
    "unlimitedStorage",
    "idle"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "vmaker-content.html",
        "pinnedTab.html",
        "/static/css/content.css",
        "/static/media/*",
        "/static/js/*.js",
        "pageWorld.js",
        "/app/virtual_bg_assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "externally_connectable": {
    "matches": [
      "<all_urls>"
    ]
  }
}