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 擴展基本資訊
| 名稱 | |
| ID | efhedldbjahpgjcneebmbolkalbhckfi |
| 官方網址 | 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
}
} | |