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