Google Forms Auto Filler
Automatically fills google forms.
Cos'è Google Forms Auto Filler?
Google Forms Auto Filler è un'estensione di Chrome sviluppata da Murat Serhat Alperen, e la sua funzione principale è "Automatically fills google forms.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Forms Auto Filler
Scarica i file di estensione Google Forms Auto Filler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Google Forms Auto Filler |
ID | jdjlkmjjmpdbmejkicfjokkgifdkpjek |
URL Ufficiale | https://chromewebstore.google.com/detail/google-forms-auto-filler/jdjlkmjjmpdbmejkicfjokkgifdkpjek |
Descrizione | Automatically fills google forms. |
Dimensione del File | 124 KB |
Conteggio Installazioni | 10,000 |
Versione Corrente | 0.2.3 |
Ultimo Aggiornamento | 2022-03-15 |
Data di Pubblicazione | 2021-01-28 |
Valutazione | 3.27/5 Totale 11 Valutazioni |
Sviluppatore | Murat Serhat Alperen |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/muratalperen/GoogleFormsAutoFiller |
Lingue Supportate | 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" ] } ] } |