Client-Hints

Add HTTP Client-Hint headers to outgoing requests

Client-Hints란 무엇입니까?

Client-Hints은(는) Andy Davies에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add HTTP Client-Hint headers to outgoing requests"입니다.

확장 프로그램 스크린샷

screenshot

Client-Hints 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Client-Hints Client-Hints
ID gdghpgmkfaedgngmnahnaaegpacanlef
공식 URL https://chromewebstore.google.com/detail/client-hints/gdghpgmkfaedgngmnahnaaegpacanlef
설명 Add HTTP Client-Hint headers to outgoing requests
파일 크기 21.81 KB
설치 횟수 54
현재 버전 0.3.1
최근 업데이트 2013-11-02
출시 날짜 2013-11-02
평점 2.00/5 총 3 개의 평점
개발자 Andy Davies
결제 유형 free
확장 프로그램 웹 사이트 http://andydavies.me
지원되는 언어 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:\/\/*\/*"
    ]
}