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 |
| 官方網址 | 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\/*"
]
}
]
} | |