Request Interceptor
Request Interceptor Extension for Chrome.
Что такое Request Interceptor?
Request Interceptor - это расширение Chrome, разработанное beDev, и его основная функция - "Request Interceptor Extension for Chrome.".
Снимки экрана расширения
Скачать файл CRX расширения Request Interceptor
Скачайте файлы расширений 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 |
| Электронная почта | [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"
]
} | |