BugReplay

BugReplay

Screencast and Network Debugging Tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "4.0.17",
  "name": "BugReplay",
  "short_name": "BugReplay",
  "description": "Screencast and Network Debugging Tool",
  "background": {
    "page": "html/background-page.html"
  },
  "browser_action": {
    "default_icon": {
      "16": "img/ic-16-blue.png",
      "48": "img/ic-48-blue.png"
    },
    "default_popup": "html/popup.html"
  },
  "icons": {
    "128": "img/ic-128-blue.png"
  },
  "manifest_version": 2,
  "incognito": "split",
  "permissions": [
    "<all_urls>",
    "activeTab",
    "notifications",
    "debugger",
    "tabCapture",
    "desktopCapture",
    "cookies",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "https://*.bugreplay.com/",
    "https://storage.googleapis.com/",
    "https://*.s3-accelerate.amazonaws.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/bundled/background/camera/detect.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/bugreplay-extension-check.gif",
    "html/camera.html",
    "bundled/background/camera/content.js",
    "css/content.css",
    "img/camera/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}