Request Headers Editor

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

What is Request Headers Editor?

Request Headers Editor is a Chrome extension developed by AG, and its main feature is "Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.".

Extension Screenshots

screenshot

Download Request Headers Editor Extension CRX File

Download Request Headers Editor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Request Headers Editor Request Headers Editor
ID ilnphcjchjmgfnoblebeachdjbhapapg
Official URL https://chromewebstore.google.com/detail/request-headers-editor/ilnphcjchjmgfnoblebeachdjbhapapg
Description Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.
File Size 33.38 KB
Installation Count 83
Current Version 0.0.5
Last Updated 2023-04-08
Publish Date 2019-04-08
Developer AG
Email [email protected]
Payment Type free
Extension Website https://github.com/gromnitsky/request-headers-editor
Help Page URL https://github.com/gromnitsky/request-headers-editor/issues
Supported Languages 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": []
}