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

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

확장 프로그램 사용 설명서

                        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
}