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 to jest Request Headers Editor?

Request Headers Editor to rozszerzenie Chrome opracowane przez AG, a jego główną funkcją jest „Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Request Headers Editor

Pobierz pliki rozszerzeń Request Headers Editor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Request Headers Editor Request Headers Editor
ID ilnphcjchjmgfnoblebeachdjbhapapg
Oficjalny URL https://chromewebstore.google.com/detail/request-headers-editor/ilnphcjchjmgfnoblebeachdjbhapapg
Opis Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.
Rozmiar pliku 33.38 KB
Liczba instalacji 83
Aktualna Wersja 0.0.5
Ostatnia Aktualizacja 2023-04-08
Data Publikacji 2019-04-08
Deweloper AG
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/gromnitsky/request-headers-editor
Adres URL Strony Pomocy https://github.com/gromnitsky/request-headers-editor/issues
Obsługiwane Języki 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": []
}