Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Nov 02, 2025.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Housalyzer | Free Real Estate Analysis Tool",
"version": "1.0.0",
"description": "Automatically analyse mortgage and investment deals on popular real estate websites.",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-32.png",
"128": "icons\/icon-32.png"
},
"action": {
"default_title": "Housalyzer",
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png"
}
},
"permissions": [
"storage",
"activeTab",
"tabs",
"scripting"
],
"host_permissions": [
"https:\/\/housalyzer.com\/*",
"https:\/\/*.housalyzer.com\/*",
"https:\/\/zillow.com\/*",
"https:\/\/*.zillow.com\/*",
"https:\/\/streeteasy.com\/*",
"https:\/\/*.streeteasy.com\/*",
"https:\/\/realtor.com\/*",
"https:\/\/*.realtor.com\/*",
"https:\/\/redfin.com\/*",
"https:\/\/*.redfin.com\/*"
],
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https:\/\/housalyzer.com\/*",
"https:\/\/*.housalyzer.com\/*",
"https:\/\/zillow.com\/*",
"https:\/\/*.zillow.com\/*",
"https:\/\/streeteasy.com\/*",
"https:\/\/*.streeteasy.com\/*",
"https:\/\/realtor.com\/*",
"https:\/\/*.realtor.com\/*",
"https:\/\/redfin.com\/*",
"https:\/\/*.redfin.com\/*"
],
"js": [
"siteParsers\/core.js",
"siteParsers\/zillow.js",
"siteParsers\/streeteasy.js",
"siteParsers\/realtor.js",
"siteParsers\/redfin.js",
"contentScript.js"
],
"css": [
"overlay.css"
],
"run_at": "document_idle"
}
]
}