HTTP Codes

Quickly view information about HTTP status codes.

Cos'è HTTP Codes?

HTTP Codes è un'estensione di Chrome sviluppata da Nick Polet, e la sua funzione principale è "Quickly view information about HTTP status codes.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione HTTP Codes

Scarica i file di estensione HTTP Codes in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome HTTP Codes HTTP Codes
ID dkddhohjnfjgdpdkmoogijggjnpgekgf
URL Ufficiale https://chromewebstore.google.com/detail/http-codes/dkddhohjnfjgdpdkmoogijggjnpgekgf
Descrizione Quickly view information about HTTP status codes.
Dimensione del File 48.98 KB
Conteggio Installazioni 91
Versione Corrente 1.0
Ultimo Aggiornamento 2015-07-07
Data di Pubblicazione 2015-07-07
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Nick Polet
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/*"
            ]
        }
    ]
}