FileWave Inventory

FileWave Inventory

Reports device information from enterprise-enrolled Chromebooks to FileWave inventory

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FileWave Inventory",
  "action": {
    "default_popup": "popup.html"
  },
  "description": "Reports device information from enterprise-enrolled Chromebooks to FileWave inventory",
  "version": "2023.02.28",
  "icons": {
    "19": "icon_19.png",
    "38": "icon_38.png",
    "128": "icon_128.png"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "alarms",
    "enterprise.deviceAttributes",
    "enterprise.networkingAttributes",
    "contentSettings",
    "fontSettings",
    "geolocation",
    "identity",
    "identity.email",
    "management",
    "notifications",
    "system.cpu",
    "system.memory",
    "system.storage"
  ],
  "host_permissions": [
    "https://*/"
  ],
  "storage": {
    "managed_schema": "schema.json"
  }
}