Client-Hints

Add HTTP Client-Hint headers to outgoing requests

Client-Hints là gì?

Client-Hints là một tiện ích mở rộng Chrome được phát triển bởi Andy Davies, và tính năng chính của nó là "Add HTTP Client-Hint headers to outgoing requests".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Client-Hints

Tải xuống các tệp mở rộng Client-Hints dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Client-Hints Client-Hints
ID gdghpgmkfaedgngmnahnaaegpacanlef
URL Chính Thức https://chromewebstore.google.com/detail/client-hints/gdghpgmkfaedgngmnahnaaegpacanlef
Mô tả Add HTTP Client-Hint headers to outgoing requests
Kích Thước Tệp 21.81 KB
Số Lần Cài Đặt 54
Phiên Bản Hiện Tại 0.3.1
Cập Nhật Lần Cuối 2013-11-02
Ngày Phát Hành 2013-11-02
Đánh Giá 2.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Andy Davies
Loại Thanh Toán free
Trang Web Mở Rộng http://andydavies.me
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}