Header-Editor

Alter your HTTP request headers on the fly

O que é Header-Editor?

Header-Editor é uma extensão do Chrome desenvolvida por 67726e, e sua principal característica é "Alter your HTTP request headers on the fly".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Header-Editor

Baixe arquivos de extensão Header-Editor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Header-Editor Header-Editor
ID pkokmcnklmgbepioackopoknkdlhefjl
URL Oficial https://chromewebstore.google.com/detail/header-editor/pkokmcnklmgbepioackopoknkdlhefjl
Descrição Alter your HTTP request headers on the fly
Tamanho do Arquivo 131 KB
Contagem de Instalações 7,008
Versão Atual 2.2.0
Última Atualização 2015-04-13
Data de Publicação 2015-04-13
Classificação 3.65/5 Total de 17 Avaliações
Desenvolvedor 67726e
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}