Bug Magnet

Right-click context menu to help with exploratory testing

Bug Magnet là gì?

Bug Magnet là một tiện ích mở rộng Chrome được phát triển bởi https://bugmagnet.org, và tính năng chính của nó là "Right-click context menu to help with exploratory testing".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bug Magnet

Tải xuống các tệp mở rộng Bug Magnet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bug Magnet Bug Magnet
ID efhedldbjahpgjcneebmbolkalbhckfi
URL Chính Thức https://chromewebstore.google.com/detail/bug-magnet/efhedldbjahpgjcneebmbolkalbhckfi
Mô tả Right-click context menu to help with exploratory testing
Kích Thước Tệp 39.66 KB
Số Lần Cài Đặt 47,797
Phiên Bản Hiện Tại 3.0
Cập Nhật Lần Cuối 2017-12-04
Ngày Phát Hành 2017-12-04
Đánh Giá 4.38/5 Tổng số 56 Đánh Giá
Nhà Phát Triển https://bugmagnet.org
Loại Thanh Toán free
Trang Web Mở Rộng https://bugmagnet.org/
URL Trang Trợ Giúp https://bugmagnet.org/contributing.html
Ngôn Ngữ Được Hỗ Trợ 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
    }
}