Megabonus - cash back up to 40%

Megabonus - cash back up to 40%

Megabonus is a reliable and convenient cash back program that allows saving on online purchases

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "3.4.0",
  "homepage_url": "https://megabonus.com/",
  "background": {
    "page": "background.html"
  },
  "icons": {
    "128": "icons/128.png"
  },
  "browser_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": [
    "http://*/*",
    "https://*/*",
    "cookies",
    "notifications",
    "webRequest",
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "html/*",
    "dist/*",
    "icons/*",
    "fonts/*.*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}