Fill-it
Fill HTML form with fake values.
Fill-it란 무엇입니까?
Fill-it은(는) Florian Knibbe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fill HTML form with fake values."입니다.
확장 프로그램 스크린샷
Fill-it 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Fill-it is totally open source : https://github.com/FlorianKnibbe/fill-it
Fill-it is Google Chrome extension design to fill HTML form with fake values in order to saving time when it comes to fill forms. You can customize and add filter/target pattern and generated values pattern in parameters.
**WARNING** Please note that **default parameters are for French users** but you can customize all of them as you want/need.
* Target fields on : label, placeholder, name and type
* Auto fill respect attributs : min, max, minlength, maxlength and pattern
## COMMANDS ##
CTRL + DBLCLICK => Auto fill one field
or click on one field then...
CTRL + SHIFT + A => Auto fill all fields in page
CTRL + SHIFT + F => Auto fill form (restricted area) in page 확장 프로그램 기본 정보
| 이름 | |
| ID | fdkaefddgpceppjokdiffahhjgcaflke |
| 공식 URL | https://chromewebstore.google.com/detail/fill-it/fdkaefddgpceppjokdiffahhjgcaflke |
| 설명 | Fill HTML form with fake values. |
| 파일 크기 | 70.64 KB |
| 설치 횟수 | 281 |
| 현재 버전 | 1.0.2 |
| 최근 업데이트 | 2018-09-30 |
| 출시 날짜 | 2018-09-30 |
| 개발자 | Florian Knibbe |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://github.com/FlorianKnibbe/fill-it |
| 도움말 페이지 URL | https://github.com/FlorianKnibbe/fill-it |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Fill-it",
"version": "1.0.2",
"short_name": "Fillit",
"description": "Fill HTML form with fake values.",
"permissions": [
"storage",
"http:\/\/*\/*",
"https:\/\/*\/*",
"tabs"
],
"options_page": "options.html",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "img\/icon16.png",
"24": "img\/icon24.png",
"32": "img\/icon32.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"default_title": "Open source Form Filler by Florian Knibbe",
"default_popup": "popup.html"
},
"icons": {
"16": "img\/icon16.png",
"24": "img\/icon24.png",
"32": "img\/icon32.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"assets\/jquery.js",
"assets\/randexp.js",
"domManipulator.js"
]
}
],
"manifest_version": 2
} | |