Google Forms Auto Filler
Automatically fills google forms.
Google Forms Auto Filler là gì?
Google Forms Auto Filler là một tiện ích mở rộng Chrome được phát triển bởi Murat Serhat Alperen, và tính năng chính của nó là "Automatically fills google forms.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Forms Auto Filler
Tải xuống các tệp mở rộng Google Forms Auto Filler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Forms Auto Filler |
ID | jdjlkmjjmpdbmejkicfjokkgifdkpjek |
URL Chính Thức | https://chromewebstore.google.com/detail/google-forms-auto-filler/jdjlkmjjmpdbmejkicfjokkgifdkpjek |
Mô tả | Automatically fills google forms. |
Kích Thước Tệp | 124 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 0.2.3 |
Cập Nhật Lần Cuối | 2022-03-15 |
Ngày Phát Hành | 2021-01-28 |
Đánh Giá | 3.27/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | Murat Serhat Alperen |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/muratalperen/GoogleFormsAutoFiller |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |