Examine source code of Bid Agent

Inspect and view changes in Bid Agent 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": "Bid Agent",
  "version": "1.1",
  "description": "Automatically extracts project details and generates AI-powered bids.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://www.freelancer.com/projects/*/details"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.freelancer.com/projects/*/details"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icons/icon48.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}