HTTP Codes

Quickly view information about HTTP status codes.

Qu'est-ce que HTTP Codes ?

HTTP Codes est une extension Chrome développée par Nick Polet, et sa fonction principale est "Quickly view information about HTTP status codes.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension HTTP Codes

Téléchargez les fichiers d'extension HTTP Codes 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

                        HTTP Codes gives you information about standard HTTP status codes. All the codes are set out in a grid, with color coordination, making it easy to find the code you are looking for. Clicking on each code will bring up more information... useful if you are developing REST API's and websites that utilize a lot of HTTP status codes.                    

Informations de Base sur l'Extension

Nom HTTP Codes HTTP Codes
ID dkddhohjnfjgdpdkmoogijggjnpgekgf
URL Officiel https://chromewebstore.google.com/detail/http-codes/dkddhohjnfjgdpdkmoogijggjnpgekgf
Description Quickly view information about HTTP status codes.
Taille du Fichier 48.98 KB
Nombre d'Installations 91
Version Actuelle 1.0
Dernière Mise à Jour 2015-07-07
Date de Publication 2015-07-07
Évaluation 5.00/5 Total 2 Évaluations
Développeur Nick Polet
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTTP Codes",
    "description": "Quickly view information about HTTP status codes.",
    "version": "1.0",
    "icons": {
        "16": "images\/icons\/icon16.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icons\/icon16.png",
        "default_popup": "http_codes.html",
        "default_title": "HTTP Codes"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/jquery-2.1.4.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}