Realyst:Single Family Property Tool for Homeowners and Investors

Realyst:Single Family Property Tool for Homeowners and Investors

Allows you to more quickly evaluate the value of a property on Zillow.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Realyst:Single Family Property Tool for Homeowners and Investors",
  "description": "Allows you to more quickly evaluate the value of a property on Zillow.com",
  "version": "1.5.2",
  "author": "Realyst",
  "action": {
    "default_popup": "templates/popup.html",
    "default_icon": {
      "48": "static/images/realyst_extension_icon.png",
      "128": "static/images/realyst_extension_icon_128.png"
    }
  },
  "background": {
    "service_worker": "static/js/background.js"
  },
  "permissions": [
    "storage",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "https://*.zillow.com/*",
    "https://api.openai.com/",
    "https://extensionpay.com/*"
  ],
  "icons": {
    "48": "static/images/realyst_extension_icon.png",
    "128": "static/images/realyst_extension_icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.zillow.com/*",
        "https://realyst-extension.herokuapp.com/*"
      ],
      "js": [
        "static/js/ExtPay.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/images/logo-2.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval' http://localhost:* http://127.0.0.1:*; object-src 'self'"
  }
}