HTTP Codes

Quickly view information about HTTP status codes.

Hvad er HTTP Codes?

HTTP Codes er en Chrome-udvidelse udviklet af Nick Polet, og dens hovedfunktion er "Quickly view information about HTTP status codes.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download HTTP Codes-udvidelses-CRX-fil

Download HTTP Codes-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn HTTP Codes HTTP Codes
ID dkddhohjnfjgdpdkmoogijggjnpgekgf
Officiel URL https://chromewebstore.google.com/detail/http-codes/dkddhohjnfjgdpdkmoogijggjnpgekgf
Beskrivelse Quickly view information about HTTP status codes.
Filstørrelse 48.98 KB
Antal Installationer 91
Nuværende Version 1.0
Senest Opdateret 2015-07-07
Udgivelsesdato 2015-07-07
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Nick Polet
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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:\/\/*\/*"
            ]
        }
    ]
}