Examine source code of Summarize AI: Quick Article Summarizer

Inspect and view changes in Summarize AI: Quick Article 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "3.31",
  "description": "__MSG_appDescription__",
  "author": "trinhnv",
  "homepage_url": "https://trinhnv.engineer",
  "default_locale": "en",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "https://ai-proxy-31b697729d07.herokuapp.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "libs/jquery.3.7.1min.js",
        "content.js"
      ],
      "css": [
        "styles/content.css"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "libs/jquery.3.7.1min.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}