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": "Location Lens Browser Extension",
"version": "1.0.1",
"description": "Extract property addresses from real estate websites and find nearby locations with distances and driving times.",
"short_name": "Location Lens",
"author": "Location Lens",
"homepage_url": "https:\/\/locationlens.app",
"permissions": [
"scripting",
"activeTab",
"tabs",
"storage"
],
"host_permissions": [
"*:\/\/*.zillow.com\/*",
"*:\/\/*.redfin.com\/*",
"*:\/\/*.realtor.com\/*",
"*:\/\/*.apartments.com\/*",
"https:\/\/location-lens.onrender.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.zillow.com\/*",
"*:\/\/*.redfin.com\/*",
"*:\/\/*.realtor.com\/*",
"*:\/\/*.apartments.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"incognito": "split"
}