Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "PropIQ - Property Investment Analyzer",
"version": "1.0.1",
"description": "AI-powered real estate investment analysis on Zillow. Analyze properties instantly with cash flow, ROI, and deal scoring.",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.zillow.com\/*",
"https:\/\/luntra-outreach-app.azurewebsites.net\/*"
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup\/index.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.zillow.com\/*"
],
"js": [
"content\/zillow-parser.js",
"content\/analyzer-ui.js"
],
"css": [
"styles\/content.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"styles\/*"
],
"matches": [
"https:\/\/www.zillow.com\/*"
]
}
]
}