Mayday

A browser extension for Mayday

Wat is Mayday?

Mayday is een Chrome-extensie ontwikkeld door https://www.getmayday.com, en de belangrijkste functie is "A browser extension for Mayday".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Mayday

Download Mayday-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        A Chrome extension for Mayday Recharger, which extends the bank reconciliation functionality in Xero to allow you to match bank transactions to bills posted in other orgs in your group.                    

Basisinformatie over de Extensie

Naam Mayday Mayday
ID fkipfnnahnnainffmlmicmbbkcijlcjg
Officiële URL https://chromewebstore.google.com/detail/mayday/fkipfnnahnnainffmlmicmbbkcijlcjg
Beschrijving A browser extension for Mayday
Bestandsgrootte 252 KB
Aantal Installaties 383
Huidige Versie 1.2.10
Laatst Bijgewerkt 2023-10-04
Publicatiedatum 2023-01-23
Ontwikkelaar https://www.getmayday.com
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://www.getmayday.com/legal/privacy-policy
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mayday",
    "version": "1.2.10",
    "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\/*"
            ]
        }
    ]
}