Bug Magnet

Right-click context menu to help with exploratory testing

Was ist Bug Magnet?

Bug Magnet ist eine Chrome-Erweiterung, die von https://bugmagnet.org entwickelt wurde, und ihr Hauptmerkmal ist "Right-click context menu to help with exploratory testing".

Erweiterungsscreenshots

screenshot

Bug Magnet-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bug Magnet-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Bug Magnet Bug Magnet
ID efhedldbjahpgjcneebmbolkalbhckfi
Offizielle URL https://chromewebstore.google.com/detail/bug-magnet/efhedldbjahpgjcneebmbolkalbhckfi
Beschreibung Right-click context menu to help with exploratory testing
Dateigröße 39.66 KB
Installationsanzahl 47,797
Aktuelle Version 3.0
Letztes Update 2017-12-04
Veröffentlichungsdatum 2017-12-04
Bewertung 4.38/5 Insgesamt 56 Bewertungen
Entwickler https://bugmagnet.org
Zahlungsart free
Erweiterungswebsite https://bugmagnet.org/
Hilfeseite URL https://bugmagnet.org/contributing.html
Unterstützte Sprachen 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
    }
}