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.”。
擴展截圖
下載QA Host Warning Tool擴展crx文件
下載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!
擴展基本資訊
名稱 | |
ID | kgnpedlhlghhhokmnacipnikdmdibdgn |
官方網址 | 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:\/\/*\/*" ] } ] } |