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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
}