Google Forms Auto Filler
Automatically fills google forms.
Vad är Google Forms Auto Filler?
Google Forms Auto Filler är en Chrome-tillägg utvecklad av Murat Serhat Alperen, och dess huvudfunktion är "Automatically fills google forms.".
Tilläggsskärmbilder
Ladda ner Google Forms Auto Filler-förlängningens CRX-fil
Ladda ner Google Forms Auto Filler-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Google Forms Auto Filler |
ID | jdjlkmjjmpdbmejkicfjokkgifdkpjek |
Officiell webbadress | https://chromewebstore.google.com/detail/google-forms-auto-filler/jdjlkmjjmpdbmejkicfjokkgifdkpjek |
Beskrivning | Automatically fills google forms. |
Filstorlek | 124 KB |
Antal Installationer | 10,000 |
Aktuell Version | 0.2.3 |
Senast Uppdaterad | 2022-03-15 |
Publiceringsdatum | 2021-01-28 |
Betyg | 3.27/5 Totalt 11 Betyg |
Utvecklare | Murat Serhat Alperen |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/muratalperen/GoogleFormsAutoFiller |
Stödda Språk | 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" ] } ] } |