Mayday
A browser extension for Mayday
什么是Mayday?
Mayday是由https://www.getmayday.com开发的Chrome扩展程序,该扩展的主要功能是“A browser extension for Mayday”。
扩展截图
下载Mayday扩展crx文件
下载Mayday扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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 |
| 隐私政策页面URL | 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\/*"
]
}
]
} | |