Bug Magnet
Right-click context menu to help with exploratory testing
Cos'è Bug Magnet?
Bug Magnet è un'estensione di Chrome sviluppata da https://bugmagnet.org, e la sua funzione principale è "Right-click context menu to help with exploratory testing".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bug Magnet
Scarica i file di estensione Bug Magnet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Bug Magnet |
ID | efhedldbjahpgjcneebmbolkalbhckfi |
URL Ufficiale | https://chromewebstore.google.com/detail/bug-magnet/efhedldbjahpgjcneebmbolkalbhckfi |
Descrizione | Right-click context menu to help with exploratory testing |
Dimensione del File | 39.66 KB |
Conteggio Installazioni | 47,797 |
Versione Corrente | 3.0 |
Ultimo Aggiornamento | 2017-12-04 |
Data di Pubblicazione | 2017-12-04 |
Valutazione | 4.38/5 Totale 56 Valutazioni |
Sviluppatore | https://bugmagnet.org |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://bugmagnet.org/ |
URL della Pagina di Aiuto | https://bugmagnet.org/contributing.html |
Lingue Supportate | 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 } } |