HomeSpeed

HomeSpeed

Discover the fastest internet available at your new apartment or home.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HomeSpeed",
  "version": "1.0.3",
  "description": "Discover the fastest internet available at your new apartment or home.",
  "content_security_policy": "default-src 'self' https://geo.fcc.gov https://opendata.fcc.gov https://www.google-analytics.com",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://www.zillow.com/homes/for_sale/*",
        "https://www.zillow.com/homes/for_rent/*",
        "https://www.zillow.com/homedetails/*",
        "https://www.trulia.com/p/*",
        "https://www.trulia.com/c/*",
        "https://www.trulia.com/property/*",
        "https://www.redfin.com/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "content.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "16": "images/hs_logos-04.png",
      "32": "images/hs_logos-03.png",
      "48": "images/hs_logos-02.png",
      "128": "images/hs_logos-01.png"
    },
    "default_title": "HomeSpeed: Internet availability for Zillow, Trulia, or Redfin"
  },
  "icons": {
    "16": "images/hs_logos-04.png",
    "32": "images/hs_logos-03.png",
    "48": "images/hs_logos-02.png",
    "128": "images/hs_logos-01.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "declarativeContent"
  ]
}