Examine source code of Uprent - AI Rental Agent

Inspect and view changes in Uprent - AI Rental 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Uprent - AI Rental Agent",
  "description": "Your personal cheat code for rental search 🚀",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5HRU6N+ZsvrM/v5ugZ54ke8i9oYt6yGk4rkiqWT2QJ6Os2nteJ4Bu46Ac0+qY2rUoUIA/kwALgl7KNbkai8+03DY1CqQ74uziz/2ECqOZTlf0ey/kOUEMBYFKVL8oCTqsRai+/yDwmTnb/L7YJ+Ear+PBPbq8eVGcIQ7pq75aAPeeMdsI39WqcGF/a/BsUKkQNnlKgJSMC5wSnj5NjysUDoTMt5e1uTy4EOoUAnnSLvkVUlTkqavfm0snCPd2s5ZrwS96ycwlfDUEGHununOzWAVeg5Ho9X/AJJ7DJpcAezXGQAbyeDV6p9R3DGW1H1zuRfEazMbsI92npic0PzbbQIDAQAB",
  "permissions": [
    "scripting",
    "tabs",
    "management",
    "activeTab",
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "https://*.uprent.nl/",
    "http://localhost:5000/",
    "https://www.pararius.com/",
    "https://www.pararius.nl/"
  ],
  "action": {
    "default_icon": "icons/192x192.png"
  },
  "background": {
    "service_worker": "service-worker/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "53.1"
}