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文件

下載Client-Hints擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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:\/\/*\/*"
    ]
}