Request Interceptor
Request Interceptor Extension for Chrome.
Request Interceptorとは何ですか?
Request InterceptorはbeDevによって開発されたChromeの拡張機能で、その主な機能は「Request Interceptor Extension for Chrome.」です。
拡張機能のスクリーンショット
Request Interceptor拡張機能のCRXファイルをダウンロード
Request Interceptor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Request Interceptor provides you to intercept HTTP/HTTPS request packets. After intercepting, those request packets you can:
- Forward intercepted requests,
- Drop intercepted requests,
- Modify header values,
- Modify POST data,
- Add customized request headers,
- Delete customized request headers,
- Save request details as a JSON file,
- Copy URLs from requests,
- Pick which resource types to intercept,
- Browse request history. 拡張機能の基本情報
| 名前 | |
| ID | hkkjcknodnahjdnemannhkhnfedifkoh |
| 公式URL | https://chromewebstore.google.com/detail/request-interceptor/hkkjcknodnahjdnemannhkhnfedifkoh |
| 説明 | Request Interceptor Extension for Chrome. |
| ファイルサイズ | 23.97 KB |
| インストール数 | 1,007 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2021-07-01 |
| 公開日 | 2021-06-30 |
| 評価 | 4.25/5 合計 12 レビュー |
| 開発者 | beDev |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Request Interceptor",
"description": "Request Interceptor Extension for Chrome.",
"version": "1.0",
"manifest_version": 2,
"background": {
"scripts": [
"js\/background.js"
]
},
"browser_action": {
"default_title": "Request Interceptor",
"default_icon": {
"16": "\/icons\/icon16.png",
"32": "\/icons\/icon32.png",
"48": "\/icons\/icon48.png",
"128": "\/icons\/icon128.png"
}
},
"icons": {
"16": "\/icons\/icon16.png",
"32": "\/icons\/icon32.png",
"48": "\/icons\/icon48.png",
"128": "\/icons\/icon128.png"
},
"permissions": [
"debugger",
"storage",
"unlimitedStorage"
]
} | |