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": "QuickROI: Instant Real Estate Deal Analyzer",
"version": "1.0.1",
"description": "Analyze real estate deals instantly on Zillow with ROI calculations, ARV estimates, and deal scoring",
"permissions": [
"storage",
"activeTab",
"contextMenus"
],
"host_permissions": [
"https:\/\/www.zillow.com\/*",
"https:\/\/www.redfin.com\/*",
"https:\/\/www.realtor.com\/*",
"https:\/\/www.trulia.com\/*",
"https:\/\/www.loopnet.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.zillow.com\/homedetails\/*",
"https:\/\/www.zillow.com\/b\/*"
],
"js": [
"utils\/calculator.js",
"utils\/scraper.js",
"utils\/storage.js",
"content.js"
],
"css": [
"styles\/widget.css"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*",
"styles\/*"
],
"matches": [
"https:\/\/www.zillow.com\/*"
]
}
]
}