HTTP Codes

Quickly view information about HTTP status codes.

HTTP Codesとは何ですか?

HTTP CodesはNick Poletによって開発されたChromeの拡張機能で、その主な機能は「Quickly view information about HTTP status codes.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

HTTP Codes拡張機能のCRXファイルをダウンロード

HTTP Codes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 HTTP Codes HTTP Codes
ID dkddhohjnfjgdpdkmoogijggjnpgekgf
公式URL https://chromewebstore.google.com/detail/http-codes/dkddhohjnfjgdpdkmoogijggjnpgekgf
説明 Quickly view information about HTTP status codes.
ファイルサイズ 48.98 KB
インストール数 91
現在のバージョン 1.0
最終更新日 2015-07-07
公開日 2015-07-07
評価 5.00/5 合計 2 レビュー
開発者 Nick Polet
Eメール [email protected]
支払い方法 free
対応言語 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:\/\/*\/*"
            ]
        }
    ]
}