Random Filler
Simple tool that fills forms with random data or predefined edge cases.
Random Filler란 무엇입니까?
Random Filler은(는) Pawel Szczurko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple tool that fills forms with random data or predefined edge cases."입니다.
확장 프로그램 스크린샷
Random Filler 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
There already exist tools that fill web forms, but this extension aims to aid developers in testing web forms by providing a simple yet useful apporach to filling out forms. Esentially there are two modes, completely random fill and realistic test cases. The completely random options fill forms with random characters (with a biased probability towards letters). On the other hand, a user has also the option to select one of the available test cases, or a mix among the test cases.
확장 프로그램 기본 정보
이름 | Random Filler |
ID | clofnhpoigphigpholmoimnmkojlpmjg |
공식 URL | https://chromewebstore.google.com/detail/random-filler/clofnhpoigphigpholmoimnmkojlpmjg |
설명 | Simple tool that fills forms with random data or predefined edge cases. |
파일 크기 | 50.67 KB |
설치 횟수 | 692 |
현재 버전 | 1.0 |
최근 업데이트 | 2014-11-01 |
출시 날짜 | 2014-11-01 |
평점 | 3.50/5 총 4 개의 평점 |
개발자 | Pawel Szczurko |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Random Filler", "version": "1.0", "options_page": "options.html", "description": "Simple tool that fills forms with random data or predefined edge cases.", "background": { "scripts": [ "back.js" ] }, "icons": { "512": "icons\/icon512.png", "256": "icons\/icon256.png", "128": "icons\/icon128.png", "64": "icons\/icon64.png", "48": "icons\/icon48.png", "32": "icons\/icon32.png", "24": "icons\/icon24.png", "16": "icons\/icon16.png" }, "browser_action": { "default_icon": { "19": "icons\/icon24.png" }, "default_title": "Random Filler" }, "permissions": [ "activeTab", "storage" ] } |