Airwallex Interceptor

Test your branch without merging

¿Qué es Airwallex Interceptor?

Airwallex Interceptor es una extensión de Chrome desarrollada por carl.jin, y su función principal es "Test your branch without merging".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Airwallex Interceptor

Descarga archivos de extensión Airwallex Interceptor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Airwallex Interceptor Airwallex Interceptor
ID lmbgndjaiemmidfecifjijpeahajhpea
URL Oficial https://chromewebstore.google.com/detail/airwallex-interceptor/lmbgndjaiemmidfecifjijpeahajhpea
Descripción Test your branch without merging
Tamaño del Archivo 460 KB
Cantidad de Instalaciones 187
Versión Actual 2.37.9
Última Actualización 2024-03-07
Fecha de Publicación 2021-02-15
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador carl.jin
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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:\/\/*\/*"
            ]
        }
    ]
}