Client-Hints

Add HTTP Client-Hint headers to outgoing requests

Cos'è Client-Hints?

Client-Hints è un'estensione di Chrome sviluppata da Andy Davies, e la sua funzione principale è "Add HTTP Client-Hint headers to outgoing requests".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Client-Hints

Scarica i file di estensione Client-Hints in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Client-Hints Client-Hints
ID gdghpgmkfaedgngmnahnaaegpacanlef
URL Ufficiale https://chromewebstore.google.com/detail/client-hints/gdghpgmkfaedgngmnahnaaegpacanlef
Descrizione Add HTTP Client-Hint headers to outgoing requests
Dimensione del File 21.81 KB
Conteggio Installazioni 54
Versione Corrente 0.3.1
Ultimo Aggiornamento 2013-11-02
Data di Pubblicazione 2013-11-02
Valutazione 2.00/5 Totale 3 Valutazioni
Sviluppatore Andy Davies
Tipo di Pagamento free
Sito Web dell'Estensione http://andydavies.me
Lingue Supportate 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:\/\/*\/*"
    ]
}