Airwallex Interceptor

Test your branch without merging

Airwallex Interceptor란 무엇입니까?

Airwallex Interceptor은(는) carl.jin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Test your branch without merging"입니다.

확장 프로그램 스크린샷

screenshot

Airwallex Interceptor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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