Backend tester

Add HTTP headers to requests for backend servers

什麼是Backend tester?

Backend tester是由preflightsiren開發的Chrome擴展程式,該擴展的主要功能是“Add HTTP headers to requests for backend servers”。

下載Backend tester擴展crx文件

下載Backend tester擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The simplest and most light-weight way to test backends with multiple virtual servers.

The common case is a webserver that can serve multiple websites. If you don't have DNS setup, or DNS refers to a reverse proxy, this extension will allow  you to talk directly to the backend server, overwriting the http host header.

Scenario:

Servers: proxy.example.com web01.example.com
websites: foo.com, bar.com
Objective: you want to test how web01.example.com responds to requests to foo.com, but foo.com is already set up in DNS to go to proxy.example.com
Solution: Set the host value to web01.example.com, set the host header to foo.com and browse to http://web01.example.com
This extension will set the host header as though you were accessing http://foo.com                    

擴展基本資訊

名稱 Backend tester Backend tester
ID ckbpkbcoliljejddndjfjhbplninbbme
官方網址 https://chrome.google.com/webstore/detail/backend-tester/ckbpkbcoliljejddndjfjhbplninbbme
簡介 Add HTTP headers to requests for backend servers
檔案大小 5.88 KB
安裝次數 30
目前版本 1.0
更新時間 2014-05-13
上架時間 2014-05-13
評分 5.00/5 共 1 次評分
開發者 preflightsiren
付費類型 free
擴展官網 https://github.com/preflightsiren/chrome-backend-tester
說明頁面URL https://github.com/preflightsiren/chrome-backend-tester
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Backend tester",
    "version": "1.0",
    "description": "Add HTTP headers to requests for backend servers",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        ""
    ],
    "options_page": "settings.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2
}