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”。
扩展截图
下载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 |
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 } } |