Client-Hints

Add HTTP Client-Hint headers to outgoing requests

O que é Client-Hints?

Client-Hints é uma extensão do Chrome desenvolvida por Andy Davies, e sua principal característica é "Add HTTP Client-Hint headers to outgoing requests".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Client-Hints

Baixe arquivos de extensão Client-Hints 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

                        Extension to allow Client-Hints header to be set for testing / experimentation purposes.

Client-Hints (CH-*:) HTTP Header is proposed as a way of allowing browsers to communicate details of screen height, width and display pixel ratio to servers so that the server can return resources, especially images, that are optimised.

See https://github.com/igrigorik/http-client-hints for more on the Client-Hints proposal

Source code for extension can be found on GitHub - https://github.com/andydavies/Client-Hints- pull requests welcomed.                    

Informações Básicas da Extensão

Nome Client-Hints Client-Hints
ID gdghpgmkfaedgngmnahnaaegpacanlef
URL Oficial https://chromewebstore.google.com/detail/client-hints/gdghpgmkfaedgngmnahnaaegpacanlef
Descrição Add HTTP Client-Hint headers to outgoing requests
Tamanho do Arquivo 21.81 KB
Contagem de Instalações 54
Versão Atual 0.3.1
Última Atualização 2013-11-02
Data de Publicação 2013-11-02
Classificação 2.00/5 Total de 3 Avaliações
Desenvolvedor Andy Davies
Tipo de Pagamento free
Site da Extensão http://andydavies.me
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Client-Hints",
    "description": "Add HTTP Client-Hint headers to outgoing requests",
    "version": "0.3.1",
    "browser_action": {
        "default_icon": "icon_48.png",
        "default_popup": "popup.html",
        "default_title": "Client-Hints"
    },
    "background": {
        "scripts": [
            "background.js",
            "utils.js"
        ]
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}