Homr Home Bookmark (Zillow Personal Advisor)

Homr Home Bookmark (Zillow Personal Advisor)

Looking to buy or rent a home? Homr helps you find, organize and decide. Can be a personal advisor for Zillow and other mediums.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Homr Home Bookmark (Zillow Personal Advisor)",
  "version": "1.0.1",
  "manifest_version": 3,
  "description": "Looking to buy or rent a home? Homr helps you find, organize and decide. Can be a personal advisor for Zillow and other mediums.",
  "icons": {
    "16": "imgs/icons/icon16.png",
    "32": "imgs/icons/icon32.png",
    "48": "imgs/icons/icon48.png",
    "128": "imgs/icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.zillow.com/*",
        "https://*.realtor.com/*",
        "https://*.realtor.ca/*",
        "https://*.trulia.com/*",
        "https://*.foreclosure.com/*",
        "https://*.apartments.com/*",
        "https://*.fsbo.com/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "main-service-worker.js"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "imgs/loading.gif"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    },
    {
      "resources": [
        "imgs/icons/icon48.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    },
    {
      "resources": [
        "homr-audit-page/audit-dashboard.html"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}