Bugsee

Bugsee

Bugsee is a Chrome extension that collects and adds crucial information to your bug and unhandled exception reports.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bugsee",
  "version": "2.0.0.292",
  "version_name": "2.0.0-9a88e9b-",
  "minimum_chrome_version": "85.0",
  "author": "Bugsee, Inc",
  "description": "Bugsee is a Chrome extension that collects and adds crucial information to your bug and unhandled exception reports.",
  "homepage_url": "https://www.bugsee.com",
  "icons": {
    "16": "assets/icons/icon16.png",
    "32": "assets/icons/icon32.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "permissions": [
    "notifications",
    "unlimitedStorage",
    "storage",
    "webRequest",
    "webNavigation",
    "tabCapture",
    "activeTab",
    "tabs",
    "cookies",
    "debugger",
    "system.memory",
    "management",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": {
      "32": "assets/icons/icon32.png"
    },
    "default_title": "Bugsee"
  },
  "options_ui": {
    "page": "ext/ui/options.html"
  },
  "background": {
    "scripts": [
      "ext/background/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "ext/content/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+B",
        "mac": "Command+Shift+B"
      }
    }
  }
}