Bug Magnet
Right-click context menu to help with exploratory testing
Bug Magnet क्या है?
Bug Magnet https://bugmagnet.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Right-click context menu to help with exploratory testing"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Bug Magnet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Exploratory testing assistant for Chrome. Adds common problematic values and edge cases to the context menu (right-click) for editable elements, so you can keep them handy and access them easily during exploratory testing sessions. - Convenient access to common boundaries and edge cases for exploratory testing - Extend easily with your own config files - Works on input fields, text areas, content editable DIVs - Works on multi-frame pages, but only if they are from the same domain - Tiny overhead per page (<1k), no 3rd party library dependencies, completely passive, so it does not interfere with your web app execution in any way - Opensource and customisable (https://github.com/gojko/bugmagnet) Version 3.0 is a major overhaul with lots of new features, check out https://bugmagnet.org/v3.html for a list of new features
एक्सटेंशन की मूल जानकारी
नाम | Bug Magnet |
ID | efhedldbjahpgjcneebmbolkalbhckfi |
आधिकारिक URL | https://chromewebstore.google.com/detail/bug-magnet/efhedldbjahpgjcneebmbolkalbhckfi |
विवरण | Right-click context menu to help with exploratory testing |
फ़ाइल का आकार | 39.66 KB |
स्थापना संख्या | 47,797 |
वर्तमान संस्करण | 3.0 |
अंतिम अपडेट | 2017-12-04 |
प्रकाशन तिथि | 2017-12-04 |
रेटिंग | 4.38/5 कुल 56 रेटिंग्स |
डेवलपर | https://bugmagnet.org |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://bugmagnet.org/ |
सहायता पृष्ठ URL | https://bugmagnet.org/contributing.html |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bug Magnet", "description": "Right-click context menu to help with exploratory testing", "version": "3.0", "permissions": [ "contextMenus", "storage", "activeTab" ], "optional_permissions": [ "clipboardWrite", "clipboardRead" ], "background": { "scripts": [ "extension.js" ] }, "manifest_version": 2, "icons": { "128": "magnet.png", "16": "magnet-16.png" }, "homepage_url": "https:\/\/bugmagnet.org", "author": "Gojko Adzic https:\/\/gojko.net", "options_ui": { "page": "options.html", "chrome_style": true } } |