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은(는) PotatoTools에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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

QA Host Warning Tool 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
            ]
        }
    ]
}