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”。
扩展截图
下载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 |
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:\/\/*\/*" ] } |