Request Headers Editor

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

Co je Request Headers Editor?

Request Headers Editor je rozšíření Chrome vyvinuté AG, a jeho hlavní funkcí je „Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Request Headers Editor

Stáhněte si soubory rozšíření Request Headers Editor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Request Headers Editor Request Headers Editor
ID ilnphcjchjmgfnoblebeachdjbhapapg
Oficiální URL https://chromewebstore.google.com/detail/request-headers-editor/ilnphcjchjmgfnoblebeachdjbhapapg
Popis Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.
Velikost souboru 33.38 KB
Počet instalací 83
Aktuální Verze 0.0.5
Poslední Aktualizace 2023-04-08
Datum Vydání 2019-04-08
Vývojář AG
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/gromnitsky/request-headers-editor
URL Stránky Nápovědy https://github.com/gromnitsky/request-headers-editor/issues
Podporované Jazyky 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": []
}