Chrome Auditing for Education

Chrome Auditing for Education allows administrators to easily audit online traffic from the Chrome browser or ChromeOS devices --…
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome Auditing for Education",
  "version": "1.14",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiWXWxpFZCQNgGloO4uD6wYL9bN+ieASIZABzVrnVKsFB4JfX8qexH3j5o4giJBy1gf9W7i8VvXOy+xPjD3O5T+DnKvdLMZX2rTIbaDE6yJZQt0gbeGRzzN1NpyMFNcPUziT2mqoYRrueAgkOqMTjy3bLRdqKRwPmjDNGc7g7SekfPHxE0xRRk7ZU8LUiXIn2hKIBt2tPwGiTyM4jZ5Cy5vcVZHRnYq6Fs9XwomM4IQOxekmqTNF5gJcDkhfVIcF55Mm8IW+eAn6pdvzd9VyfISTOmdhjIMx3w+MQyaMukktS9rtUHCXwVaMZI1I+hE2vrx8wV0UJlAoLV4naUI+M+wIDAQAB",
  "background": {
    "service_worker": "listen.js"
  },
  "action": {
    "default_popup": "ui.html"
  },
  "permissions": [
    "identity",
    "identity.email",
    "management",
    "webRequest",
    "storage"
  ],
  "host_permissions": [
    "https://scooped.ca/*",
    "<all_urls>"
  ],
  "icons": {
    "16": "ico-chromeaudit-16.png",
    "48": "ico-chromeaudit-48.png",
    "128": "ico-chromeaudit-128.png"
  }
}