Evri Sucks

Evri Sucks

Shows a banner if the website uses Evri for delivery

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Evri Sucks",
  "description": "Shows a banner if the website uses Evri for delivery",
  "version": "0.9.1",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "host_permissions": [
    "https://*/*"
  ]
}