HTTP Codes

Quickly view information about HTTP status codes.

Wat is HTTP Codes?

HTTP Codes is een Chrome-extensie ontwikkeld door Nick Polet, en de belangrijkste functie is "Quickly view information about HTTP status codes.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie HTTP Codes

Download HTTP Codes-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam HTTP Codes HTTP Codes
ID dkddhohjnfjgdpdkmoogijggjnpgekgf
Officiële URL https://chromewebstore.google.com/detail/http-codes/dkddhohjnfjgdpdkmoogijggjnpgekgf
Beschrijving Quickly view information about HTTP status codes.
Bestandsgrootte 48.98 KB
Aantal Installaties 91
Huidige Versie 1.0
Laatst Bijgewerkt 2015-07-07
Publicatiedatum 2015-07-07
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Nick Polet
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/*"
            ]
        }
    ]
}