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
}