Examine source code of Browser History Insights

Inspect and view changes in Browser History Insights 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": "Browser History Insights",
  "version": "1.0.0",
  "description": "Visualize your browsing habits through interactive charts",
  "permissions": [
    "history",
    "storage"
  ],
  "action": {
    "default_icon": {
      "48": "assets/icons/icon48.png",
      "128": "assets/icons/icon128.png"
    },
    "default_popup": "index.html"
  },
  "icons": {
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "background": {
    "service_worker": "src/background.js",
    "type": "module"
  }
}