Client-Hints
Add HTTP Client-Hint headers to outgoing requests
Qu'est-ce que Client-Hints ?
Client-Hints est une extension Chrome développée par Andy Davies, et sa fonction principale est "Add HTTP Client-Hint headers to outgoing requests".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Client-Hints
Téléchargez les fichiers d'extension Client-Hints au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Client-Hints |
ID | gdghpgmkfaedgngmnahnaaegpacanlef |
URL Officiel | https://chromewebstore.google.com/detail/client-hints/gdghpgmkfaedgngmnahnaaegpacanlef |
Description | Add HTTP Client-Hint headers to outgoing requests |
Taille du Fichier | 21.81 KB |
Nombre d'Installations | 54 |
Version Actuelle | 0.3.1 |
Dernière Mise à Jour | 2013-11-02 |
Date de Publication | 2013-11-02 |
Évaluation | 2.00/5 Total 3 Évaluations |
Développeur | Andy Davies |
Type de Paiement | free |
Site Web de l'Extension | http://andydavies.me |
Langues Prises en Charge | 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:\/\/*\/*" ] } |