Assumable

Assumable

Assumable realestate

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Assumable",
  "description": "Assumable realestate",
  "version": "1.1.0",
  "action": {
    "default_title": "Assumable",
    "default_icon": {
      "16": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    }
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "identity"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.zillow.com/*",
        "https://www.redfin.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup/popup.html"
      ],
      "matches": [
        "https://www.zillow.com/*",
        "https://www.redfin.com/*"
      ]
    }
  ],
  "oauth2": {
    "client_id": "1002251544211-tlqlaoci25ekqskkivscg2efuli9kk2r.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}