Examine source code of AIggregator - ChatGPT, Claude, Deepseek, Gemini At Once - AI Aggregator

Inspect and view changes in AIggregator - ChatGPT, Claude, Deepseek, Gemini At Once - AI Aggregator 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",
  "name": "AIggregator - ChatGPT, Claude, Deepseek, Gemini At Once - AI Aggregator",
  "version": "1.6.95",
  "manifest_version": 3,
  "description": "Prompt Gemini, ChatGPT, DeepSeek, and Claude simultaneously with text, screenshots, or files with one click",
  "permissions": [
    "scripting",
    "activeTab",
    "sidePanel",
    "contextMenus",
    "storage",
    "offscreen"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://aiggregator.xyz/login*",
        "https://api.aiggregator.xyz/login*"
      ],
      "js": [
        "login-content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "utils/*",
        "images/*",
        "libs/**",
        "offscreen.html",
        "offscreen.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "side_panel": {
    "default_path": "sidepanel/index.html"
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    },
    "default_title": "AIggregator"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}