Zinstant

Zinstant

Filter, Export and Auto-Search for below market value properties

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Jimmy",
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://cdnjs.cloudflare.com; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "js/jquery.min.js",
        "js/content.js",
        "js/materialize.min.js"
      ],
      "css": [
        "css/style.css"
      ],
      "matches": [
        "https://www.zillow.com/*"
      ]
    }
  ],
  "description": "Filter, Export and Auto-Search for below market value properties",
  "icons": {
    "48": "img/iconLauncher.png",
    "128": "img/iconStore.png"
  },
  "manifest_version": 2,
  "name": "Zinstant",
  "permissions": [
    "webRequest",
    "tabs",
    "storage",
    "background",
    "notifications",
    "https://www.zillow.com/*"
  ],
  "web_accessible_resources": [
    "/img/card.png",
    "/img/icon.png"
  ],
  "background": {
    "scripts": [
      "js/pdfmake.min.js",
      "js/vfs_fonts.js",
      "js/background.js"
    ]
  },
  "version": "1.5"
}