Chrome Reporting Extension

Chrome Reporting Extension

Extension for reporting chrome metrics and events.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Chrome Reporting Extension",
  "version": "4.0.0",
  "manifest_version": 3,
  "description": "Extension for reporting chrome metrics and events.",
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "service_worker": "js/service_worker.js",
    "type": "module"
  },
  "permissions": [
    "alarms",
    "nativeMessaging",
    "offscreen",
    "management",
    "scripting",
    "storage",
    "system.cpu",
    "system.memory",
    "identity",
    "identity.email",
    "tabs",
    "unlimitedStorage",
    "safeBrowsingPrivate"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ],
  "storage": {
    "managed_schema": "schema.json"
  },
  "incognito": "not_allowed",
  "update_url": "https://clients2.google.com/service/update2/crx"
}