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:\/\/*\/*"
            ]
        }
    ]
}