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": "Redfin Commute Helper",
"version": "1.1.0",
"description": "Automatically calculate commute times from Redfin property listings to your work or other important locations.",
"permissions": [
"activeTab",
"storage"
],
"background": {
"service_worker": "src\/background.js",
"type": "module"
},
"host_permissions": [
"*:\/\/*.redfin.com\/*",
"https:\/\/geocoding.geo.census.gov\/*",
"https:\/\/nominatim.openstreetmap.org\/*",
"https:\/\/router.project-osrm.org\/*"
],
"action": {
"default_popup": "index.html"
},
"content_scripts": [
{
"js": [
"src\/content.js"
],
"matches": [
"*:\/\/*.redfin.com\/*"
]
}
],
"icons": {
"16": "icon.svg",
"48": "icon.svg",
"128": "icon.svg"
}
}