Google Forms Auto Filler

Automatically fills google forms.

Was ist Google Forms Auto Filler?

Google Forms Auto Filler ist eine Chrome-Erweiterung, die von Murat Serhat Alperen entwickelt wurde, und ihr Hauptmerkmal ist "Automatically fills google forms.".

Erweiterungsscreenshots

screenshot

Google Forms Auto Filler-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Forms Auto Filler-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Google Forms Auto Filler Google Forms Auto Filler
ID jdjlkmjjmpdbmejkicfjokkgifdkpjek
Offizielle URL https://chromewebstore.google.com/detail/google-forms-auto-filler/jdjlkmjjmpdbmejkicfjokkgifdkpjek
Beschreibung Automatically fills google forms.
Dateigröße 124 KB
Installationsanzahl 10,000
Aktuelle Version 0.2.3
Letztes Update 2022-03-15
Veröffentlichungsdatum 2021-01-28
Bewertung 3.27/5 Insgesamt 11 Bewertungen
Entwickler Murat Serhat Alperen
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/muratalperen/GoogleFormsAutoFiller
Unterstützte Sprachen 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"
            ]
        }
    ]
}