Mayday
A browser extension for Mayday
ما هو Mayday؟
Mayday هو إضافة Chrome تم تطويرها بواسطة https://www.getmayday.com، والميزة الرئيسية لها هي "A browser extension for Mayday".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Mayday
قم بتنزيل ملفات الامتداد Mayday بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Mayday |
ID | fkipfnnahnnainffmlmicmbbkcijlcjg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/mayday/fkipfnnahnnainffmlmicmbbkcijlcjg |
الوصف | A browser extension for Mayday |
حجم الملف | 252 KB |
عدد التثبيتات | 383 |
النسخة الحالية | 1.2.10 |
آخر تحديث | 2023-10-04 |
تاريخ النشر | 2023-01-23 |
المطور | https://www.getmayday.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://www.getmayday.com/legal/privacy-policy |
اللغات المدعومة | 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\/*" ] } ] } |