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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Warns you with a red banner if your host is on a blacklisted IP. Works great for VPN disconnects when testing in QA."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में QA Host Warning Tool एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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!
एक्सटेंशन की मूल जानकारी
नाम | |
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:\/\/*\/*" ] } ] } |