Zillow Cash Flow Calculator

Zillow Cash Flow Calculator

Calculator for real estate rental homes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Zillow Cash Flow Calculator",
  "description": "Calculator for real estate rental homes",
  "version": "0.0.3.0",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": {
      "16": "img/logo-16.png",
      "32": "img/logo-32.png",
      "48": "img/logo-48.png",
      "64": "img/logo-64.png",
      "128": "img/logo-128.png"
    },
    "icons": {
      "16": "img/logo-16.png",
      "32": "img/logo-32.png",
      "48": "img/logo-48.png",
      "64": "img/logo-64.png",
      "128": "img/logo-128.png"
    },
    "default_title": "Investor Calculator",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.zillow.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'",
  "permissions": [
    "tabs",
    "storage",
    "declarativeContent",
    "identity",
    "notifications",
    "storage",
    "https://stark-springs-27645.herokuapp.com/*",
    "https://cashflowexpert.*",
    "https://big-stingray-33.hasura.app/v1/graphql",
    "https://*.auth0.com/*"
  ]
}