Food Pulse

Food Pulse

Gets the top food items from a restaurant's Google Reviews.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Food Pulse",
  "version": "1.0.0",
  "description": "Gets the top food items from a restaurant's Google Reviews.",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com https://fonts.googleapis.com/; object-src 'self'",
  "permissions": [
    "tabs",
    "https://*.google.com/*",
    "https://*.googleapis.com/*"
  ]
}