Chrome Reporting Extension

Chrome Reporting Extension

Extension for reporting chrome metrics and events.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome Reporting Extension",
  "version": "3.0.0",
  "manifest_version": 2,
  "description": "Extension for reporting chrome metrics and events.",
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/log_entry_factory.js",
      "js/policy_provider.js",
      "js/port.js",
      "js/extension_logic.js"
    ],
    "persistent": true
  },
  "permissions": [
    "alarms",
    "nativeMessaging",
    "management",
    "storage",
    "system.cpu",
    "system.memory",
    "identity",
    "identity.email",
    "tabs",
    "http://*/*",
    "https://*/*",
    "file://*/*",
    "unlimitedStorage",
    "safeBrowsingPrivate"
  ],
  "storage": {
    "managed_schema": "schema.json"
  },
  "incognito": "not_allowed"
}