Examine source code of justsummarized

Inspect and view changes in justsummarized 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": "justsummarized",
  "description": "Quickly turn web pages, PDFs, and videos into clear summaries. Save time and stay informed.",
  "version": "1.0.0.1",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "action": {
    "default_title": "Summarize"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' https://fonts.googleapis.com; font-src https://fonts.gstatic.com;"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "https://justsummarized-frontend.vercel.app/*",
    "https://justsummarized-frontend.vercel.app/",
    "https://justsummarized.com/*",
    "https://justsummarized.com/",
    "http://fonts.googleapis.com/",
    "https://fonts.googleapis.com/"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon-triangle-exclamation.svg",
        "usage-card-background.jpg",
        "icon-logout.svg",
        "icon-placeholder.svg",
        "icon-settings.svg",
        "icon-pdf.svg",
        "pdf.worker.min.js",
        "icon-chevron-left.svg",
        "icon-chevron-right.svg",
        "icon-help.svg",
        "icon-privacy.svg",
        "icon-subscription.svg",
        "icon-summary-language.svg",
        "icon-summary-length.svg",
        "icon-open.svg",
        "icon-delete-red.svg",
        "icon-vertical-dots.svg",
        "icon-empty-history.svg",
        "icon-floating-button.svg",
        "logo.png",
        "icon-close.svg",
        "icon-more.svg",
        "icon-history.svg",
        "icon-edit.svg",
        "icon-loading.svg",
        "icon-clipboard.svg",
        "icon-regenerate.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "js": [
    "content.js"
  ],
  "resources": [
    "logo.png"
  ],
  "css": [
    "content.css"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content-scripts/content.css"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}