Renter Joy - Enjoy the Search.

Renter Joy - Enjoy the Search.

Search Zillow to discover the best rental deals anywhere. Know if they're great deals, just right or extremely overpriced.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Renter Joy - Enjoy the Search.",
  "short_name": "RenterJoy",
  "version": "1.0.1",
  "manifest_version": 3,
  "description": "Search Zillow to discover the best rental deals anywhere. Know if they're great deals, just right or extremely overpriced.",
  "action": {
    "default_icon": "images/rj_128.png",
    "default_popup": "lib/popup.html"
  },
  "background": {
    "service_worker": "lib/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "lib/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "images/rj_128.png",
    "32": "images/rj_128.png",
    "64": "images/rj_128.png",
    "128": "images/rj_128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.zillow.com/*",
        "https://renterjoy.com/*"
      ],
      "js": [
        "lib/jquery-3.2.1.min.js",
        "lib/jquery-ui.min.js",
        "lib/content.js"
      ],
      "css": [
        "lib/insert.css",
        "lib/ani.css",
        "lib/jquery-ui.min.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}