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
官方網址 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:\/\/*\/*"
            ]
        }
    ]
}