Airwallex Interceptor
Test your branch without merging
What is Airwallex Interceptor?
Airwallex Interceptor is a Chrome extension developed by carl.jin, and its main feature is "Test your branch without merging".
Extension Screenshots
Download Airwallex Interceptor Extension CRX File
Download Airwallex Interceptor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Run your MFE application without container and test your feature branch without merge.
Extension Basic Information
Name | Airwallex Interceptor |
ID | lmbgndjaiemmidfecifjijpeahajhpea |
Official URL | https://chromewebstore.google.com/detail/airwallex-interceptor/lmbgndjaiemmidfecifjijpeahajhpea |
Description | Test your branch without merging |
File Size | 460 KB |
Installation Count | 187 |
Current Version | 2.37.9 |
Last Updated | 2024-03-07 |
Publish Date | 2021-02-15 |
Rating | 5.00/5 Total 3 Ratings |
Developer | carl.jin |
[email protected] | |
Payment Type | free |
Supported Languages | 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:\/\/*\/*" ] } ] } |