Airwallex Interceptor

Test your branch without merging

什麼是Airwallex Interceptor?

Airwallex Interceptor是由carl.jin開發的Chrome擴展程式,該擴展的主要功能是“Test your branch without merging”。

擴展截圖

screenshot

下載Airwallex Interceptor擴展crx文件

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