Zillow Price Per Square Foot

Runs in background to automatically add price per square foot right underneath the main asking price of homes
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Zillow Price Per Square Foot",
  "description": "Runs in background to automatically add price per square foot right underneath the main asking price of homes",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "http://www.zillow.com/homes/*"
      ],
      "js": [
        "jquery-2.2.0.min.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}