Airbnb Estimator - Awning

Airbnb Estimator - Awning

Analyze the Airbnb revenue of any property on Zillow or Redfin.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Airbnb Estimator - Awning",
  "description": "Analyze the Airbnb revenue of any property on Zillow or Redfin.",
  "version": "1.0.1",
  "background": {
    "service_worker": "background.ca4c10a1.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.zillow.com/*",
        "*://*.redfin.com/*"
      ],
      "js": [
        "property-analyzer.066a64f9.js"
      ],
      "css": [
        "property-analyzer.f4d8a34a.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "background",
    "declarativeContent",
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://*.awning.com/",
    "*://*.zillow.com/*",
    "*://*.redfin.com/*"
  ],
  "action": {
    "default_popup": "property-analyzer.b6bf556d.html",
    "default_icon": "assets/Awning_icon_gray.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.zillow.com/*",
        "*://*.redfin.com/*"
      ],
      "resources": [
        "assets/Awning_icon.png",
        "assets/Awning_icon_gray.png"
      ]
    }
  ]
}