Airwallex Interceptor

Test your branch without merging

Airwallex Interceptor là gì?

Airwallex Interceptor là một tiện ích mở rộng Chrome được phát triển bởi carl.jin, và tính năng chính của nó là "Test your branch without merging".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Airwallex Interceptor

Tải xuống các tệp mở rộng Airwallex Interceptor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Airwallex Interceptor Airwallex Interceptor
ID lmbgndjaiemmidfecifjijpeahajhpea
URL Chính Thức https://chromewebstore.google.com/detail/airwallex-interceptor/lmbgndjaiemmidfecifjijpeahajhpea
Mô tả Test your branch without merging
Kích Thước Tệp 460 KB
Số Lần Cài Đặt 187
Phiên Bản Hiện Tại 2.37.9
Cập Nhật Lần Cuối 2024-03-07
Ngày Phát Hành 2021-02-15
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển carl.jin
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}