ChromeOS Diagnostics

ChromeOS Diagnostics

The helper extension for the ChromeOS Diagnostics PWA.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChromeOS Diagnostics",
  "version": "0.1",
  "description": "The helper extension for the ChromeOS Diagnostics PWA.",
  "manifest_version": 3,
  "icons": {
    "16": "images/favicon-16x16.png",
    "32": "images/favicon-32x32.png",
    "48": "images/android-icon-48x48.png",
    "128": "images/apple-icon-120x120.png"
  },
  "background": {
    "service_worker": "script.js"
  },
  "permissions": [
    "system.cpu",
    "system.storage",
    "system.memory"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://diagchrome.netlify.app/*"
    ]
  }
}