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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | 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 } } |