QA Host Warning Tool

Warns you with a red banner if your host is on a blacklisted IP. Works great for VPN disconnects when testing in QA.

Τι είναι το QA Host Warning Tool;

Το QA Host Warning Tool είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον PotatoTools, και η κύρια λειτουργία του είναι "Warns you with a red banner if your host is on a blacklisted IP. Works great for VPN disconnects when testing in QA.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης QA Host Warning Tool

Λήψη αρχείων επέκτασης QA Host Warning Tool σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This tool is designed to help a QA tester avoid mistakenly testing on a production website by blacklisting production hosts with a warning banner. This tool can prove especially useful if you require a lot of host file updates, or if your test environment automatically reverts to a production site when testing on a VPN connection. 

This tool will automatically warn you with another banner if a host changes from a private IP to a public IP address. This option can be disabled at any time. The tool currently only supports class A private IP changes. If you want the other classes, let us know via the comments/reviews!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα QA Host Warning Tool QA Host Warning Tool
ID kgnpedlhlghhhokmnacipnikdmdibdgn
Επίσημο URL https://chrome.google.com/webstore/detail/kgnpedlhlghhhokmnacipnikdmdibdgn
Περιγραφή Warns you with a red banner if your host is on a blacklisted IP. Works great for VPN disconnects when testing in QA.
Μέγεθος Αρχείου 359 KB
Αριθμός Εγκαταστάσεων 13
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2017-06-20
Ημερομηνία Δημοσίευσης 2017-06-20
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής PotatoTools
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QA Host Warning Tool",
    "description": "Warns you with a red banner if your host is on a blacklisted IP. Works great for VPN disconnects when testing in QA.",
    "version": "1.0",
    "minimum_chrome_version": "20",
    "manifest_version": 2,
    "icons": {
        "16": "\/images\/btn-warning16.png",
        "48": "\/images\/btn-warning48.png",
        "128": "\/images\/btn-warning128.png"
    },
    "browser_action": {
        "default_popup": "options.html",
        "default_icon": "\/images\/btn-warning48.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "storage",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "jquery.ip.js",
                "ip.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}