Google Forms Auto Filler
Automatically fills google forms.
Google Forms Auto Filler란 무엇입니까?
Google Forms Auto Filler은(는) Murat Serhat Alperen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically fills google forms."입니다.
확장 프로그램 스크린샷
Google Forms Auto Filler 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This add-on enters text into input fields of Google Forms by predefined values automatically. For example if you set Name as John, each input fields of Google Forms whose title is Name gets John value when the page is loaded. IMPORTANT Note: Because of the Google Forms bot filling blocking, you must click and press space for each form field. (Thus Google will think you have filled out) You can report bugs or make feature requests on https://github.com/muratalperen/GoogleFormsAutoFiller
확장 프로그램 기본 정보
이름 | Google Forms Auto Filler |
ID | jdjlkmjjmpdbmejkicfjokkgifdkpjek |
공식 URL | https://chromewebstore.google.com/detail/google-forms-auto-filler/jdjlkmjjmpdbmejkicfjokkgifdkpjek |
설명 | Automatically fills google forms. |
파일 크기 | 124 KB |
설치 횟수 | 10,000 |
현재 버전 | 0.2.3 |
최근 업데이트 | 2022-03-15 |
출시 날짜 | 2021-01-28 |
평점 | 3.27/5 총 11 개의 평점 |
개발자 | Murat Serhat Alperen |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/muratalperen/GoogleFormsAutoFiller |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Forms Auto Filler", "version": "0.2.3", "description": "Automatically fills google forms.", "homepage_url": "https:\/\/github.com\/muratalperen\/GoogleFormsAutoFiller", "browser_specific_settings": { "gecko": { "id": "googleFormsAutoFiller@muratalperen" } }, "icons": { "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "96": "icons\/icon-96.png" }, "permissions": [ "activeTab", "storage" ], "browser_action": { "default_icon": "icons\/icon-32.png", "default_title": "Google Forms Auto Filler", "default_popup": "fillMenu.html" }, "content_scripts": [ { "matches": [ "*:\/\/docs.google.com\/forms\/*" ], "js": [ "GoogleForm.js" ] } ] } |