Health Inspector

Health Inspector

Puts health score badges onto delivery service websites for San Francisco restaurants.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.9.1",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/health-inspector-16x16.png",
    "32": "images/health-inspector-32x32.png",
    "48": "images/health-inspector-48x48.png",
    "256": "images/health-inspector-256x256.png",
    "512": "images/health-inspector-512x512.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "https://data.sfgov.org/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.trycaviar.com/*",
        "https://postmates.com/*"
      ],
      "css": [
        "styles/contentScriptStyles.css",
        "styles/modal.css"
      ],
      "js": [
        "scripts/contentScript.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "16": "images/health-inspector-16x16.png",
      "32": "images/health-inspector-32x32.png",
      "48": "images/health-inspector-48x48.png",
      "256": "images/health-inspector-256x256.png",
      "512": "images/health-inspector-512x512.png"
    },
    "default_title": "Health Inspector",
    "default_popup": "healthscore.html"
  }
}