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
公式URL 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
}