Backend tester

Add HTTP headers to requests for backend servers

¿Qué es Backend tester?

Backend tester es una extensión de Chrome desarrollada por preflightsiren, y su función principal es "Add HTTP headers to requests for backend servers".

Descargar Archivo CRX de la Extensión Backend tester

Descarga archivos de extensión Backend tester en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Backend tester Backend tester
ID ckbpkbcoliljejddndjfjhbplninbbme
URL Oficial https://chrome.google.com/webstore/detail/backend-tester/ckbpkbcoliljejddndjfjhbplninbbme
Descripción Add HTTP headers to requests for backend servers
Tamaño del Archivo 5.88 KB
Cantidad de Instalaciones 30
Versión Actual 1.0
Última Actualización 2014-05-13
Fecha de Publicación 2014-05-13
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador preflightsiren
Tipo de Pago free
Sitio Web de la Extensión https://github.com/preflightsiren/chrome-backend-tester
URL de la Página de Ayuda https://github.com/preflightsiren/chrome-backend-tester
Idiomas Soportados 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
}