Examine source code of Navi

Inspect and view changes in Navi 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": "Navi",
  "version": "0.0.1",
  "description": "Your navigation copilot, Navi, manages your tabs, history and supports full-text search for tab content.",
  "permissions": [
    "tabs",
    "sidePanel",
    "history",
    "bookmarks",
    "topSites"
  ],
  "optional_permissions": [],
  "action": {
    "default_title": "Click to open panel",
    "default_icon": "navi-128.png"
  },
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "content_scripts": [],
  "side_panel": {
    "default_path": "src/pages/panel/index.html"
  },
  "icons": {
    "128": "navi-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "navi-128.png",
        "navi-64.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}