Examine source code of KPI Spark

Inspect and view changes in KPI Spark source codes across current and past versions
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",
  "manifest_version": 3,
  "name": "KPI Spark",
  "version": "1.15",
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.svg",
        "images/*.webp",
        "fonts/*.woff2",
        "images/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://app.kpispark.com/*",
        "https://outlook.live.com/*",
        "https://meet.google.com/*"
      ],
      "css": [
        "scripts/styles.css"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "https://mail.google.com/",
    "https://app.kpispark.com/",
    "https://outlook.live.com/",
    "https://meet.google.com/"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  }
}