Airwallex Interceptor

Test your branch without merging

Cos'è Airwallex Interceptor?

Airwallex Interceptor è un'estensione di Chrome sviluppata da carl.jin, e la sua funzione principale è "Test your branch without merging".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Airwallex Interceptor

Scarica i file di estensione Airwallex Interceptor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Airwallex Interceptor Airwallex Interceptor
ID lmbgndjaiemmidfecifjijpeahajhpea
URL Ufficiale https://chromewebstore.google.com/detail/airwallex-interceptor/lmbgndjaiemmidfecifjijpeahajhpea
Descrizione Test your branch without merging
Dimensione del File 460 KB
Conteggio Installazioni 187
Versione Corrente 2.37.9
Ultimo Aggiornamento 2024-03-07
Data di Pubblicazione 2021-02-15
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore carl.jin
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/*"
            ]
        }
    ]
}