Headlamp

Headlamp

Test Coverage Analysis

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Headlamp",
  "description": "Test Coverage Analysis",
  "version": "0.0.0.88",
  "permissions": [
    "storage",
    "tabs",
    "identity",
    "identity.email",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_title": "Headlamp is not recording.",
    "default_icon": "Headlight-Off.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "inject.js",
        "inject-eventHandlers.js",
        "inject-helpers.js",
        "crc32.js",
        "jquery.js",
        "popup.js",
        "background.js"
      ],
      "css": [
        "inject.css"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "bg-loader.js"
  },
  "oauth2": {
    "client_id": "288127103234-kaqrekodes64765ap4hdk63peb70tudr.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  }
}