Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "RoI Calculator for Real Estate",
"description": "Calculates how many years it'll take for the property to pay off.",
"version": "0.5.3",
"content_scripts": [
{
"matches": [
"*:\/\/www.zillow.com\/*"
],
"run_at": "document_end",
"js": [
"zillow.js"
]
},
{
"matches": [
"*:\/\/www.redfin.com\/*"
],
"run_at": "document_end",
"js": [
"redfin.js"
]
}
],
"host_permissions": [
"<all_urls>"
],
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"scripting",
"tabs"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"32": "\/images\/roi-calculator-for-real-estate-logo-32.png",
"48": "\/images\/roi-calculator-for-real-estate-logo-48.png",
"128": "\/images\/roi-calculator-for-real-estate-logo-128.png"
}
},
"icons": {
"32": "\/images\/roi-calculator-for-real-estate-logo-32.png",
"48": "\/images\/roi-calculator-for-real-estate-logo-48.png",
"128": "\/images\/roi-calculator-for-real-estate-logo-128.png"
},
"options_page": "options.html"
}