Examine source code of Deeper Dive

Inspect and view changes in Deeper Dive 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": "Deeper Dive",
  "description": "A chrome extension to enhance the React.dev with advanced topics",
  "version": "0.3.1",
  "action": {
    "default_popup": "popup.html",
    "default_icon": "scuba-diving-icon.png"
  },
  "icons": {
    "128": "scuba-diving-128x128.png"
  },
  "content_scripts": [
    {
      "js": [
        "extend-react-dev.js"
      ],
      "css": [
        "extend-react-dev.css"
      ],
      "matches": [
        "https://*.react.dev/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scuba-diving-icon.svg"
      ],
      "matches": [
        "https://*.react.dev/*"
      ]
    }
  ]
}