Zompz

Zompz

Get an edge on Zillow property comparisons with this extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zompz",
  "description": "Get an edge on Zillow property comparisons with this extension",
  "version": "1.4.16",
  "manifest_version": 3,
  "homepage_url": "http://zompz.com/",
  "author": {
    "name": "Mohsin Ali",
    "url": "https://github.com/mohsinaliryk",
    "maintainer": "jhernandezc",
    "maintainerURL": "https://fiverr.com/jhernandezc"
  },
  "background": {
    "service_worker": "js/sw.js"
  },
  "action": {
    "default_title": "Zompz"
  },
  "icons": {
    "16": "icons/16.png",
    "24": "icons/24.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.zillow.com/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/app.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.zillow.com/*"
      ],
      "resources": [
        "css/app.css",
        "css/slider.css",
        "css/widget.css",
        "img/*",
        "icons/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*.zillow.com/*"
  ],
  "permissions": [
    "scripting",
    "storage",
    "unlimitedStorage"
  ]
}