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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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';" } |