Consensus SNAP™

Consensus SNAP™

Record, Send, and Track instant webcam and screen recording video right inside Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "5.0.12.2",
  "version_name": "5.0.12.2",
  "name": "Consensus SNAP™",
  "short_name": "Consensus SNAP™",
  "description": "Record, Send, and Track instant webcam and screen recording video right inside Chrome",
  "homepage_url": "https://www.goconsensus.com",
  "action": {
    "default_icon": "app/icon-128.png",
    "default_title": "Consensus SNAP™"
  },
  "icons": {
    "16": "app/icon-16.png",
    "48": "app/icon-48.png",
    "128": "app/icon-128.png"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "notifications",
    "background",
    "cookies",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "*://*.goconsensus.com/",
    "*://*.cloudfront.net/",
    "*://*.amazonaws.com/",
    "*://*.kaltura.com/",
    "https://mail.google.com/",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*",
        "*://inbox.google.com/*"
      ],
      "js": [
        "./gmailInjector.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.goconsensus.com/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; camera 'self'; microphone 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "app.html",
        "videoEditor.html",
        "keepAlive.js",
        "keepAlive.html",
        "gmail/c16.png",
        "gmail/c48.png",
        "gmail/plus.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}