Request Headers Editor

Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.

Что такое Request Headers Editor?

Request Headers Editor - это расширение Chrome, разработанное AG, и его основная функция - "Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Request Headers Editor

Скачайте файлы расширений Request Headers Editor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The options page gives you a simple ini-file editor, where each section represents a pattern, e.g., `https://*.example.com/`, & each key-value pair in the sections corresponds to a header name (say, referer or user-agent).

If you leave the value of the key empty, such header will be removed from subsequent requests.                    

Основная информация о расширении

Название Request Headers Editor Request Headers Editor
ID ilnphcjchjmgfnoblebeachdjbhapapg
Официальный URL https://chromewebstore.google.com/detail/request-headers-editor/ilnphcjchjmgfnoblebeachdjbhapapg
Описание Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.
Размер файла 33.38 KB
Количество установок 83
Текущая Версия 0.0.5
Последнее Обновление 2023-04-08
Дата публикации 2019-04-08
Разработчик AG
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/gromnitsky/request-headers-editor
URL страницы помощи https://github.com/gromnitsky/request-headers-editor/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Request Headers Editor",
    "description": "Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.",
    "version": "0.0.5",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "page": "background.html"
    },
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": []
}