Comments for Zillow

Comments for Zillow

Adds a comment section to zillow.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Comments for Zillow",
  "version": "0.0.7",
  "description": "Adds a comment section to zillow.",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Comments for Zillow"
  },
  "web_accessible_resources": [
    "index.html",
    "dist/app.css",
    "dist/app.js"
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "identity",
    "storage",
    "https://www.zillow.com/*",
    "https://zillow.com/*",
    "*://*.twitter.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://www.zillow.com/*",
        "https://zillow.com/*"
      ],
      "js": [
        "zillow-controller.js"
      ]
    }
  ],
  "oauth2": {
    "client_id": "20800442460-03bob422tdrk4duttk1t8u5mt98vuojq.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}