Backend tester

Add HTTP headers to requests for backend servers

Co to jest Backend tester?

Backend tester to rozszerzenie Chrome opracowane przez preflightsiren, a jego główną funkcją jest „Add HTTP headers to requests for backend servers”.

Pobierz plik CRX rozszerzenia Backend tester

Pobierz pliki rozszerzeń Backend tester w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Backend tester Backend tester
ID ckbpkbcoliljejddndjfjhbplninbbme
Oficjalny URL https://chrome.google.com/webstore/detail/backend-tester/ckbpkbcoliljejddndjfjhbplninbbme
Opis Add HTTP headers to requests for backend servers
Rozmiar pliku 5.88 KB
Liczba instalacji 30
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-05-13
Data Publikacji 2014-05-13
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper preflightsiren
Typ Płatności free
Strona Rozszerzenia https://github.com/preflightsiren/chrome-backend-tester
Adres URL Strony Pomocy https://github.com/preflightsiren/chrome-backend-tester
Obsługiwane Języki 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
}