Real Estate Analysis Extension

Real Estate Analysis Extension

Interoperate with Zillow to help you have a big picture of your comparisons.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Real Estate Analysis Extension",
  "version": "1.3.2",
  "manifest_version": 2,
  "description": "Interoperate with Zillow to help you have a big picture of your comparisons.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "assets/*.gif"
  ],
  "commands": {
    "toggle-re-chrome": {
      "suggested_key": {
        "default": "Ctrl+X",
        "mac": "MacCtrl+X"
      },
      "description": "Toggle realestate page"
    }
  },
  "icons": {
    "16": "assets/house16.png",
    "48": "assets/house32.png",
    "128": "assets/house128.png"
  },
  "permissions": [
    "unlimitedStorage",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "https://www.zillow.com/*",
    "https://www.greatschools.org/*",
    "https://www.adt.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://zillow.com/*",
        "https://www.zillow.com/*"
      ],
      "js": [
        "injectAssets.js"
      ]
    },
    {
      "matches": [
        "https://zillow.com/*",
        "https://www.zillow.com/*"
      ],
      "js": [
        "vue/js/chunk-vendors.c9f5e0d6.js",
        "vue/js/app.32e80906.js"
      ],
      "css": [
        "vue/css/app.5f9493b4.css"
      ]
    }
  ]
}