YC Auto Form
Populate form fields with one click. This is BETA version.
YC Auto Form란 무엇입니까?
YC Auto Form은(는) Tom Gabrysiak에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Populate form fields with one click. This is BETA version."입니다.
확장 프로그램 스크린샷
YC Auto Form 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows you to auto fill forms with one click of button. Forms are filled with dummy data. Add your own custom field types in the options menu. UPDATE:: v.0.0.2 Fixed Permissions v.0.0.5 Fixed Case Selectors v.0.0.6 Added constant field options v.0.0.9 Added custom fields in options menu
확장 프로그램 기본 정보
이름 | YC Auto Form |
ID | mafmchjmbokigppgnebohdljnpenlcbb |
공식 URL | https://chromewebstore.google.com/detail/yc-auto-form/mafmchjmbokigppgnebohdljnpenlcbb |
설명 | Populate form fields with one click. This is BETA version. |
파일 크기 | 565 KB |
설치 횟수 | 429 |
현재 버전 | 0.0.9 |
최근 업데이트 | 2013-11-21 |
출시 날짜 | 2013-11-21 |
평점 | 4.60/5 총 5 개의 평점 |
개발자 | Tom Gabrysiak |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YC Auto Form", "version": "0.0.9", "manifest_version": 2, "author": "Tom Gabrysiak", "description": "Populate form fields with one click. This is BETA version.", "homepage_url": "http:\/\/tomgabrysiak.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.js", "src\/options_custom\/lib\/angular.js", "src\/options_custom\/lib\/store.js", "src\/options_custom\/js\/i18n.js", "src\/options_custom\/lib\/mootools-core.js" ], "run_at": "document_end", "all_frames": true } ], "web_accessible_resources": [ "jquery.js", "index.js" ], "options_page": "src\/options_custom\/index.html", "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "browser action demo" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "activeTab", "tabs", "storage" ] } |