Mayday

Mayday

A browser extension for Mayday

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Mayday",
  "version": "1.2.11",
  "description": "A browser extension for Mayday",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "chrome_url_overrides": {},
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://go.xero.com/BankRec/BankRec.aspx*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.getmayday.com/*"
    ]
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://api.recharger.getmayday.com",
    "https://recharger.getmayday.com",
    "https://my.getmayday.com"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": []
    },
    {
      "resources": [
        "/img/*"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "resources": [
        "/icons/*"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "resources": [
        "reconcileProxy.bundle.js"
      ],
      "matches": [
        "https://go.xero.com/*"
      ]
    }
  ]
}