HTTP Codes

Quickly view information about HTTP status codes.

Was ist HTTP Codes?

HTTP Codes ist eine Chrome-Erweiterung, die von Nick Polet entwickelt wurde, und ihr Hauptmerkmal ist "Quickly view information about HTTP status codes.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

HTTP Codes-Erweiterungs-CRX-Datei herunterladen

Laden Sie HTTP Codes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name HTTP Codes HTTP Codes
ID dkddhohjnfjgdpdkmoogijggjnpgekgf
Offizielle URL https://chromewebstore.google.com/detail/http-codes/dkddhohjnfjgdpdkmoogijggjnpgekgf
Beschreibung Quickly view information about HTTP status codes.
Dateigröße 48.98 KB
Installationsanzahl 91
Aktuelle Version 1.0
Letztes Update 2015-07-07
Veröffentlichungsdatum 2015-07-07
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Nick Polet
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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:\/\/*\/*"
            ]
        }
    ]
}