Horrendously Good

Horrendously Good

Food safety ratings for Just Eat and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Horrendously Good",
  "description": "Food safety ratings for Just Eat and more!",
  "version": "1.0.1",
  "icons": {
    "16": "assets/images/icons/16.png",
    "48": "assets/images/icons/48.png",
    "128": "assets/images/icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.just-eat.co.uk/*"
      ],
      "css": [
        "assets/css/style.css"
      ],
      "js": [
        "vendor/async.min.js",
        "vendor/jquery-2.1.4.min.js",
        "vendor/jquery-tmpl-1.4.2.js",
        "assets/js/api.js",
        "assets/js/helper.js",
        "assets/js/common.js",
        "assets/js/justeat/main.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    "templates/info.html"
  ]
}