Rental Deal Analyzer

Rental Deal Analyzer

BetterCapital.us Rental Deal Analyzer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rental Deal Analyzer",
  "manifest_version": 2,
  "version": "0.0.5",
  "description": "BetterCapital.us Rental Deal Analyzer",
  "content_scripts": [
    {
      "js": [
        "jquery-3.5.1.min.js",
        "content.js"
      ],
      "matches": [
        "https://*.redfin.com/*",
        "https://*.zillow.com/*",
        "https://*.realtor.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "logo16.png",
      "24": "logo24.png",
      "32": "logo32.png"
    }
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-ZXXw+M5rNakBChk5dSr9Zyf5zg11COc5BJbgn5ZLcl8='; object-src 'self'",
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage"
  ],
  "web_accessible_resources": [
    "*.html",
    "logo-alt.png"
  ]
}