Mayday

A browser extension for Mayday

Maydayคืออะไร?

Mayday เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.getmayday.com และคุณลักษณะหลักของมันคือ "A browser extension for Mayday"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mayday

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Mayday 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
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\/*"
            ]
        }
    ]
}