CensusConnect

CensusConnect

A tool used to find census neighborhood information around a street address.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CensusConnect",
  "description": "A tool used to find census neighborhood information around a street address.",
  "version": "1.0.6",
  "manifest_version": 2,
  "minimum_chrome_version": "28",
  "icons": {
    "16": "icons/texteditor_16.png",
    "24": "icons/Icon.png",
    "48": "icons/Icon.png",
    "128": "icons/Icon.png"
  },
  "permissions": [
    "storage",
    "http://*/",
    "https://*/",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.js",
        "contentscript.js"
      ],
      "css": [
        "censuschromeext.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "author": "ROOT_URL  change me",
  "externally_connectable": {
    "matches": [
      "*://*.censusconnect-334819.uc.r.appspot.com/*"
    ]
  }
}