Mayday
A browser extension for Mayday
Cos'è Mayday?
Mayday è un'estensione di Chrome sviluppata da https://www.getmayday.com, e la sua funzione principale è "A browser extension for Mayday".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mayday
Scarica i file di estensione Mayday in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Mayday |
ID | fkipfnnahnnainffmlmicmbbkcijlcjg |
URL Ufficiale | https://chromewebstore.google.com/detail/mayday/fkipfnnahnnainffmlmicmbbkcijlcjg |
Descrizione | A browser extension for Mayday |
Dimensione del File | 252 KB |
Conteggio Installazioni | 383 |
Versione Corrente | 1.2.10 |
Ultimo Aggiornamento | 2023-10-04 |
Data di Pubblicazione | 2023-01-23 |
Sviluppatore | https://www.getmayday.com |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://www.getmayday.com/legal/privacy-policy |
Lingue Supportate | 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\/*" ] } ] } |