Google Forms Auto Filler
Automatically fills google forms.
Wat is Google Forms Auto Filler?
Google Forms Auto Filler is een Chrome-extensie ontwikkeld door Murat Serhat Alperen, en de belangrijkste functie is "Automatically fills google forms.".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Forms Auto Filler
Download Google Forms Auto Filler-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Google Forms Auto Filler |
ID | jdjlkmjjmpdbmejkicfjokkgifdkpjek |
Officiële URL | https://chromewebstore.google.com/detail/google-forms-auto-filler/jdjlkmjjmpdbmejkicfjokkgifdkpjek |
Beschrijving | Automatically fills google forms. |
Bestandsgrootte | 124 KB |
Aantal Installaties | 10,000 |
Huidige Versie | 0.2.3 |
Laatst Bijgewerkt | 2022-03-15 |
Publicatiedatum | 2021-01-28 |
Beoordeling | 3.27/5 Totaal 11 Beoordelingen |
Ontwikkelaar | Murat Serhat Alperen |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/muratalperen/GoogleFormsAutoFiller |
Ondersteunde Talen | 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" ] } ] } |