Crime Indexer

Crime Indexer

Check out crime levels based on your Zillow search.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Crime Indexer",
  "short_name": "Crime Indexer",
  "version": "1.0.1",
  "description": "Check out crime levels based on your Zillow search.",
  "icons": {
    "16": "/icons/icon16.png",
    "32": "/icons/icon32.png",
    "48": "/icons/icon48.png",
    "192": "/icons/icon192.png"
  },
  "permissions": [
    "activeTab",
    "https://*.zillow.com/*",
    "https://api.crimeindexer.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.zillow.com/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "host_permissions": [
    "https://*.zillow.com/*"
  ],
  "action": {
    "default_popup": "index.html"
  }
}