Client-Hints

Add HTTP Client-Hint headers to outgoing requests

Co to jest Client-Hints?

Client-Hints to rozszerzenie Chrome opracowane przez Andy Davies, a jego główną funkcją jest „Add HTTP Client-Hint headers to outgoing requests”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Client-Hints

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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Client-Hints Client-Hints
ID gdghpgmkfaedgngmnahnaaegpacanlef
Oficjalny URL https://chromewebstore.google.com/detail/client-hints/gdghpgmkfaedgngmnahnaaegpacanlef
Opis Add HTTP Client-Hint headers to outgoing requests
Rozmiar pliku 21.81 KB
Liczba instalacji 54
Aktualna Wersja 0.3.1
Ostatnia Aktualizacja 2013-11-02
Data Publikacji 2013-11-02
Ocena 2.00/5 Łącznie 3 Oceny
Deweloper Andy Davies
Typ Płatności free
Strona Rozszerzenia http://andydavies.me
Obsługiwane Języki 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:\/\/*\/*"
    ]
}