Examine source code of AI Writer for Realtors

Inspect and view changes in AI Writer for Realtors 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": "AI Writer for Realtors",
  "version": "1.4",
  "description": "Generate compelling real estate listings with the power of AI.",
  "permissions": [
    "storage",
    "sidePanel"
  ],
  "action": {
    "default_title": "Click to open side panel"
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "ExtPay.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "ExtPay.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*/",
        "http://*/"
      ],
      "js": [
        "ExtPay.js",
        "content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}