Realtor.com Tools

Realtor.com Tools

The extension adds useful links to listings on Realtor.com, including: - Internet Service Providers - Google Search - Google Maps…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Realtor.com Tools",
  "version": "0.5",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.realtor.com/*",
        "https://realtor.com/*",
        "https://broadbandmap.fcc.gov/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "tabs",
    "https://www.realtor.com/*",
    "https://realtor.com/*",
    "https://broadbandmap.fcc.gov/*"
  ]
}