Real Estate Listing Hider

Real Estate Listing Hider

The extension allows you to hide listings you're not interested in on RealEstate.com.au

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Real Estate Listing Hider",
  "description": "The extension allows you to hide listings you're not interested in on RealEstate.com.au",
  "version": "3.0",
  "content_scripts": [
    {
      "matches": [
        "http://www.realestate.com.au/*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "hideListing.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/",
    "storage"
  ]
}