Mastercard Gold

Mastercard Gold

Mastercard Gold

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mastercard Gold",
  "version": "3.4.1",
  "manifest_version": 2,
  "description": "Mastercard Gold",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTabs",
    "storage",
    "webNavigation",
    "https://*.com/*",
    "https://*.se/*",
    "https://*.no/*",
    "https://*.dk/*",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.com/*",
        "https://*.se/*",
        "https://*.no/*",
        "https://*.dk/*"
      ],
      "js": [
        "main.js"
      ],
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "images/*.png",
    "*.css"
  ],
  "browser_action": {
    "default_icon": {
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "100": "images/icon100.png",
      "128": "images/icon128.png",
      "256": "images/icon128.png"
    },
    "default_title": "Mastercard Gold"
  }
}