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 |
| Eメール | [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:\/\/*\/*"
]
}
]
} | |