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": "HouseCalcs Payment Calculator",
"description": "Enhanced calculator for analyzing the monthly payment from Zillow, Redfin, or Realtor.com",
"version": "0.0.1",
"version_name": "0.0.1 beta",
"background": {
"service_worker": ".\/js\/service-worker\/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.zillow.com\/*",
"https:\/\/*.redfin.com\/*",
"https:\/\/*.realtor.com\/*"
],
"js": [
".\/js\/content-scripts\/ContentScript.js"
]
}
],
"icons": {
"16": "images\/dollar16.png",
"24": "images\/dollar24.png",
"32": "images\/dollar32.png",
"48": "images\/dollar48.png",
"128": "images\/dollar128.png"
},
"action": {
"default_icon": {
"16": "images\/dollar16.png",
"24": "images\/dollar24.png",
"32": "images\/dollar32.png",
"48": "images\/dollar48.png",
"128": "images\/dollar128.png"
},
"default_title": "MPC"
},
"side_panel": {
"default_path": ".\/html\/sidepanel\/index.html"
},
"permissions": [
"sidePanel",
"activeTab",
"tabs",
"storage"
]
}