Examine source code of SnapSumm - AI-Powered Summaries & Productivity Tool

Inspect and view changes in SnapSumm - AI-Powered Summaries & Productivity Tool 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": "SnapSumm - AI-Powered Summaries & Productivity Tool",
  "version": "1.1",
  "description": "Generate summaries and ideas with SnapSumm.",
  "permissions": [
    "identity",
    "storage",
    "contextMenus",
    "activeTab",
    "tabs"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "oauth2": {
    "client_id": "757625195161-3r4bseq8pea0q1l6tilua6cugnaplekj.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "profile",
      "email"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}