Airwallex Interceptor

Test your branch without merging

Airwallex Interceptorคืออะไร?

Airwallex Interceptor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย carl.jin และคุณลักษณะหลักของมันคือ "Test your branch without merging"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Airwallex Interceptor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Run your MFE application without container and test your feature branch without merge.                    

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

ชื่อ Airwallex Interceptor Airwallex Interceptor
ID lmbgndjaiemmidfecifjijpeahajhpea
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/airwallex-interceptor/lmbgndjaiemmidfecifjijpeahajhpea
คำอธิบาย Test your branch without merging
ขนาดไฟล์ 460 KB
จำนวนการติดตั้ง 187
เวอร์ชันปัจจุบัน 2.37.9
อัปเดตครั้งล่าสุด 2024-03-07
วันที่เผยแพร่ 2021-02-15
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา carl.jin
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Airwallex Interceptor",
    "version": "2.37.9",
    "description": "Test your branch without merging",
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "action": {
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "16": "images\/airwallex.png",
        "32": "images\/airwallex.png",
        "48": "images\/airwallex.png",
        "128": "images\/airwallex.png"
    },
    "manifest_version": 3,
    "background": {
        "service_worker": "dist\/serviceWorker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "dist\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/*.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}