FoodMagus

FoodMagus

Shows reports for your food orders on foodpanda.ro, glovoapp.com and tazz.ro

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "FoodMagus",
  "name": "FoodMagus",
  "description": "__MSG_appDescription__",
  "version": "0.8",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "app/background.js"
    ]
  },
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "*://*.foodpanda.ro/*",
        "*://*.glovoapp.com/*",
        "*://*.tazz.ro/*"
      ],
      "css": [
        "/css/root.css"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/static/css/content.css",
    "/static/media/*"
  ],
  "icons": {
    "16": "favicon-16x16.png",
    "48": "favicon-48x48.png",
    "128": "favicon-128x128.png"
  },
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
  "default_locale": "en"
}