Header-Editor

Alter your HTTP request headers on the fly

Co to jest Header-Editor?

Header-Editor to rozszerzenie Chrome opracowane przez 67726e, a jego główną funkcją jest „Alter your HTTP request headers on the fly”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Header-Editor

Pobierz pliki rozszerzeń Header-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

                        Header-Editor is an extension that will allow you to create and use arbitrary HTTP headers in Chrome.

The following permissions are needed for Header-Editor to run:

-  webRequest - Used to access the requests being sent out.
-  webRequestBlocking - So that headers are modified before being sent.
-   - All URLs are asked for since the extension cannot know ahead of time where it will be needed.

Note: Response headers do not appear in the Network Inspector, however they are supplied to your code. For more details, see:

- http://hexcoder.us/2013/08/08/response-headers-and-chrome-extensions/
- https://code.google.com/p/chromium/issues/detail?id=258064                    

Podstawowe informacje o rozszerzeniu

Nazwa Header-Editor Header-Editor
ID pkokmcnklmgbepioackopoknkdlhefjl
Oficjalny URL https://chromewebstore.google.com/detail/header-editor/pkokmcnklmgbepioackopoknkdlhefjl
Opis Alter your HTTP request headers on the fly
Rozmiar pliku 131 KB
Liczba instalacji 7,008
Aktualna Wersja 2.2.0
Ostatnia Aktualizacja 2015-04-13
Data Publikacji 2015-04-13
Ocena 3.65/5 Łącznie 17 Oceny
Deweloper 67726e
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Header-Editor",
    "description": "Alter your HTTP request headers on the fly",
    "version": "2.2.0",
    "default_locale": "en",
    "options_page": "\/src\/html\/options.html",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "browser_action": {
        "default_icon": ".\/resources\/images\/pencil-icon_48.png",
        "default_popup": "\/src\/html\/popup.html"
    },
    "background": {
        "scripts": [
            "\/src\/js\/background.js",
            "\/src\/js\/upgrade.js"
        ]
    },
    "icons": {
        "16": "\/resources\/images\/pencil-icon_16.png",
        "48": "\/resources\/images\/pencil-icon_48.png",
        "128": "\/resources\/images\/pencil-icon_128.png"
    }
}