Grubby Grub

Grubby Grub

Adds the UK Food Hygiene Rating to restaurant listings in Google Maps.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Grubby Grub",
  "version": "1.0",
  "description": "Adds the UK Food Hygiene Rating to restaurant listings in Google Maps.",
  "icons": {
    "48": "icons/48.png",
    "96": "icons/96.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.co.uk/maps*",
        "https://www.google.com/maps*"
      ],
      "js": [
        "foodHygieneInjector.js"
      ]
    }
  ],
  "host_permissions": [
    "https://api.ratings.food.gov.uk/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}