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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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:\/\/*\/*"
            ]
        }
    ]
}