Revolut Shopper

Revolut Shopper

Faster, safer, smarter. Revolut Shopper transforms the way you buy online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "3.8.0",
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "permissions": [
    "storage",
    "privacy"
  ],
  "externally_connectable": {
    "matches": [],
    "accepts_tls_channel_id": false
  },
  "default_locale": "en",
  "homepage_url": "https://revolut.com",
  "icons": {
    "16": "icons/revolut-b-16.png",
    "32": "icons/revolut-b-32.png",
    "48": "icons/revolut-b-48.png",
    "64": "icons/revolut-b-64.png",
    "128": "icons/revolut-b-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "foreground.html?popup=true",
    "default_icon": {
      "16": "icons/revolut-b-16.png",
      "32": "icons/revolut-b-32.png",
      "48": "icons/revolut-b-48.png",
      "64": "icons/revolut-b-64.png",
      "128": "icons/revolut-b-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "foreground.html",
        "dropdown.html",
        "centered.html",
        "cardBadge.html"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "extension_ids": []
    }
  ]
}