Backend tester

Add HTTP headers to requests for backend servers

Backend tester là gì?

Backend tester là một tiện ích mở rộng Chrome được phát triển bởi preflightsiren, và tính năng chính của nó là "Add HTTP headers to requests for backend servers".

Tải xuống tệp CRX của tiện ích mở rộng Backend tester

Tải xuống các tệp mở rộng Backend tester dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Backend tester Backend tester
ID ckbpkbcoliljejddndjfjhbplninbbme
URL Chính Thức https://chrome.google.com/webstore/detail/backend-tester/ckbpkbcoliljejddndjfjhbplninbbme
Mô tả Add HTTP headers to requests for backend servers
Kích Thước Tệp 5.88 KB
Số Lần Cài Đặt 30
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-05-13
Ngày Phát Hành 2014-05-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển preflightsiren
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/preflightsiren/chrome-backend-tester
URL Trang Trợ Giúp https://github.com/preflightsiren/chrome-backend-tester
Ngôn Ngữ Được Hỗ Trợ 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
}