Inspect and view changes in EZ Rent Estimate source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "EZ Rent Estimate",
"version": "1.0.2",
"description": "The easiest way to get rental estimates.",
"permissions": [
"storage"
],
"icons": {
"16": "icons/ez-16.png",
"32": "icons/ez-32.png",
"64": "icons/ez-64.png",
"128": "icons/ez-128.png"
},
"content_scripts": [
{
"matches": [
"https://*.redfin.com/*/home/*"
],
"js": [
"redfin-content.js"
],
"all_frames": true
}
],
"action": {
"default_title": "EZ Rent Estimate",
"default_popup": "popup.html"
},
"background": {
"service_worker": "dist/background.js",
"type": "module"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"host_permissions": [
"https://us-central1-ez-rent-estimate.cloudfunctions.net/*",
"https://*.firebaseio.com/*"
]
}