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:\/\/*\/*" ] } |