Airwallex Interceptor
Test your branch without merging
什么是Airwallex Interceptor?
Airwallex Interceptor是由carl.jin开发的Chrome扩展程序,该扩展的主要功能是“Test your branch without merging”。
扩展截图
下载Airwallex Interceptor扩展crx文件
下载Airwallex Interceptor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Run your MFE application without container and test your feature branch without merge. 扩展基本信息
| 名称 | |
| 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:\/\/*\/*"
]
}
]
} | |