Examine source code of AI Perfect Assistant

Inspect and view changes in AI Perfect Assistant 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": "AI Perfect Assistant",
  "description": "AI Perfect Assistant boasts a comprehensive suite of features to help reduce time spent on mundane tasks",
  "version": "1.8",
  "permissions": [
    "sidePanel",
    "contextMenus",
    "storage"
  ],
  "icons": {
    "16": "16.png",
    "128": "128.png"
  },
  "action": {
    "default_icon": "logo.png",
    "default_title": "Click to open AI Perfect Assistant"
  },
  "side_panel": {
    "default_path": "index.html"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "extensionInjector.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "gmailJsLoader.js",
        "extension.js",
        "gmailJsLoader.js.map",
        "extension.js.map"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}