Request Interceptor
Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.
Request Interceptorとは何ですか?
Request InterceptorはVinay Kaparthiによって開発されたChromeの拡張機能で、その主な機能は「Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.」です。
拡張機能のスクリーンショット
Request Interceptor拡張機能のCRXファイルをダウンロード
Request Interceptor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension helps in building rules(conditions) which when met will help in 1. redirect/block http requests 2. throttle response of static resources 3. add/modify/delete request/response http headers 4. add/modify/delete http query parameters
拡張機能の基本情報
名前 | Request Interceptor |
ID | bfgblailifedppfilabonohepkofbkpm |
公式URL | https://chromewebstore.google.com/detail/request-interceptor/bfgblailifedppfilabonohepkofbkpm |
説明 | Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params. |
ファイルサイズ | 1.89 MB |
インストール数 | 10,000 |
現在のバージョン | 1.6.0 |
最終更新日 | 2023-10-23 |
公開日 | 2020-06-01 |
評価 | 4.05/5 合計 55 レビュー |
開発者 | Vinay Kaparthi |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "author": "Vinay Kumar Kaparthi", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "32": "images\/logo_64.png" }, "default_title": "Request Interceptor" }, "description": "Intercept Requests and add custom rules to modify request\/response headers, block\/redirect requests, modify query params.", "icons": { "128": "images\/logo_128.png", "32": "images\/logo_32.png", "48": "images\/logo_48.png", "64": "images\/logo_64.png" }, "manifest_version": 2, "minimum_chrome_version": "80", "name": "Request Interceptor", "options_page": "index.html", "permissions": [ "tabs", "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "unlimitedStorage" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.6.0", "content_security_policy": "style-src-elem 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com\/css blob:;style-src 'self' 'unsafe-inline';" } |