Backend tester

Add HTTP headers to requests for backend servers

Что такое Backend tester?

Backend tester - это расширение Chrome, разработанное preflightsiren, и его основная функция - "Add HTTP headers to requests for backend servers".

Скачать файл CRX расширения Backend tester

Скачайте файлы расширений 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
}