Bug Magnet

Right-click context menu to help with exploratory testing

Bug Magnetとは何ですか?

Bug Magnetはhttps://bugmagnet.orgによって開発されたChromeの拡張機能で、その主な機能は「Right-click context menu to help with exploratory testing」です。

拡張機能のスクリーンショット

screenshot

Bug Magnet拡張機能のCRXファイルをダウンロード

Bug Magnet拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 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
    }
}