Cash Back Service Megabonus

Cash Back Service Megabonus

Service helping to make smart online purchases

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "4.5.1",
  "homepage_url": "https://megabonus.com/",
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "icons": {
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": "icons/128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "css": [
        "dist/content.css"
      ],
      "js": [
        "dist/content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "js": [
        "dist/content.js"
      ],
      "matches": [
        "*://*.megabonus.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "ru",
  "permissions": [
    "cookies",
    "notifications",
    "webRequest",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}