Bug Magnet
Right-click context menu to help with exploratory testing
Qu'est-ce que Bug Magnet ?
Bug Magnet est une extension Chrome développée par https://bugmagnet.org, et sa fonction principale est "Right-click context menu to help with exploratory testing".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Bug Magnet
Téléchargez les fichiers d'extension Bug Magnet au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Bug Magnet |
ID | efhedldbjahpgjcneebmbolkalbhckfi |
URL Officiel | https://chromewebstore.google.com/detail/bug-magnet/efhedldbjahpgjcneebmbolkalbhckfi |
Description | Right-click context menu to help with exploratory testing |
Taille du Fichier | 39.66 KB |
Nombre d'Installations | 47,797 |
Version Actuelle | 3.0 |
Dernière Mise à Jour | 2017-12-04 |
Date de Publication | 2017-12-04 |
Évaluation | 4.38/5 Total 56 Évaluations |
Développeur | https://bugmagnet.org |
Type de Paiement | free |
Site Web de l'Extension | https://bugmagnet.org/ |
URL de la Page d'Aide | https://bugmagnet.org/contributing.html |
Langues Prises en Charge | 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 } } |