Bug Magnet
Right-click context menu to help with exploratory testing
ما هو Bug Magnet؟
Bug Magnet هو إضافة Chrome تم تطويرها بواسطة https://bugmagnet.org، والميزة الرئيسية لها هي "Right-click context menu to help with exploratory testing".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Bug Magnet
قم بتنزيل ملفات الامتداد Bug Magnet بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
| عنوان 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/ |
| عنوان صفحة المساعدة | 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
}
} | |