Google Forms Auto Filler

Automatically fills google forms.

Qu'est-ce que Google Forms Auto Filler ?

Google Forms Auto Filler est une extension Chrome développée par Murat Serhat Alperen, et sa fonction principale est "Automatically fills google forms.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Google Forms Auto Filler

Téléchargez les fichiers d'extension Google Forms Auto Filler au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Google Forms Auto Filler Google Forms Auto Filler
ID jdjlkmjjmpdbmejkicfjokkgifdkpjek
URL Officiel https://chromewebstore.google.com/detail/google-forms-auto-filler/jdjlkmjjmpdbmejkicfjokkgifdkpjek
Description Automatically fills google forms.
Taille du Fichier 124 KB
Nombre d'Installations 10,000
Version Actuelle 0.2.3
Dernière Mise à Jour 2022-03-15
Date de Publication 2021-01-28
Évaluation 3.27/5 Total 11 Évaluations
Développeur Murat Serhat Alperen
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/muratalperen/GoogleFormsAutoFiller
Langues Prises en Charge 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"
            ]
        }
    ]
}