Examine source code of Summarizer

Inspect and view changes in Summarizer 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
{
  "manifest_version": 3,
  "name": "Summarizer",
  "version": "1.0",
  "description": "AI-powered webpage summarizer and Q&A assistant using Google Gemini",
  "author": "Vipul Kumar",
  "homepage_url": "https://github.com/Vipul1432/summarizer",
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon.png",
      "32": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    }
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "minimum_edge_version": "79.0.309.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}