Client-Hints

Add HTTP Client-Hint headers to outgoing requests

Wat is Client-Hints?

Client-Hints is een Chrome-extensie ontwikkeld door Andy Davies, en de belangrijkste functie is "Add HTTP Client-Hint headers to outgoing requests".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Client-Hints

Download Client-Hints-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Client-Hints Client-Hints
ID gdghpgmkfaedgngmnahnaaegpacanlef
Officiële URL https://chromewebstore.google.com/detail/client-hints/gdghpgmkfaedgngmnahnaaegpacanlef
Beschrijving Add HTTP Client-Hint headers to outgoing requests
Bestandsgrootte 21.81 KB
Aantal Installaties 54
Huidige Versie 0.3.1
Laatst Bijgewerkt 2013-11-02
Publicatiedatum 2013-11-02
Beoordeling 2.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Andy Davies
Betalingswijze free
Extensiewebsite http://andydavies.me
Ondersteunde Talen 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:\/\/*\/*"
    ]
}