Client-Hints

Add HTTP Client-Hint headers to outgoing requests

Client-Hintsคืออะไร?

Client-Hints เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andy Davies และคุณลักษณะหลักของมันคือ "Add HTTP Client-Hint headers to outgoing requests"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Client-Hints

ดาวน์โหลดไฟล์ส่วนขยาย 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
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:\/\/*\/*"
    ]
}