Google Forms Auto Filler
Automatically fills google forms.
Apa itu Google Forms Auto Filler?
Google Forms Auto Filler adalah ekstensi Chrome yang dikembangkan oleh Murat Serhat Alperen, dan fitur utamanya adalah "Automatically fills google forms.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Google Forms Auto Filler
Unduh file ekstensi Google Forms Auto Filler dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Google Forms Auto Filler |
ID | jdjlkmjjmpdbmejkicfjokkgifdkpjek |
URL Resmi | https://chromewebstore.google.com/detail/google-forms-auto-filler/jdjlkmjjmpdbmejkicfjokkgifdkpjek |
Deskripsi | Automatically fills google forms. |
Ukuran File | 124 KB |
Jumlah Instalasi | 10,000 |
Versi Saat Ini | 0.2.3 |
Terakhir Diperbarui | 2022-03-15 |
Tanggal Publikasi | 2021-01-28 |
Penilaian | 3.27/5 Total 11 Penilaian |
Pengembang | Murat Serhat Alperen |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/muratalperen/GoogleFormsAutoFiller |
Bahasa yang Didukung | 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" ] } ] } |