Airwallex Interceptor
Test your branch without merging
Co to jest Airwallex Interceptor?
Airwallex Interceptor to rozszerzenie Chrome opracowane przez carl.jin, a jego główną funkcją jest „Test your branch without merging”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Airwallex Interceptor
Pobierz pliki rozszerzeń Airwallex Interceptor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Run your MFE application without container and test your feature branch without merge.
Podstawowe informacje o rozszerzeniu
Nazwa | Airwallex Interceptor |
ID | lmbgndjaiemmidfecifjijpeahajhpea |
Oficjalny URL | https://chromewebstore.google.com/detail/airwallex-interceptor/lmbgndjaiemmidfecifjijpeahajhpea |
Opis | Test your branch without merging |
Rozmiar pliku | 460 KB |
Liczba instalacji | 187 |
Aktualna Wersja | 2.37.9 |
Ostatnia Aktualizacja | 2024-03-07 |
Data Publikacji | 2021-02-15 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | carl.jin |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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:\/\/*\/*" ] } ] } |