Examine source code of Immersive Summary

Inspect and view changes in Immersive Summary 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",
  "name": "Immersive Summary",
  "description": "Generate various summaries of website article using OpenAI GPT-3.5.",
  "version": "1.0.3",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "scripting",
    "tabs",
    "activeTab"
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "options_page": "options.html",
  "optional_host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "favicon-16x16.png",
    "32": "favicon-32x32.png",
    "48": "favicon-48x48.png",
    "128": "favicon-128x128.png"
  },
  "action": {
    "default_icon": {
      "16": "favicon-16x16.png",
      "32": "favicon-32x32.png",
      "48": "favicon-48x48.png",
      "128": "favicon-128x128.png"
    }
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "index.html",
        "assets/messageConsts.eae3b6da.js",
        "assets/index.046eb74e.js",
        "assets/inject.tsx.e26dd2f9.js"
      ],
      "use_dynamic_url": true
    }
  ]
}