Google Forms Auto Filler

Automatically fills google forms.

Τι είναι το Google Forms Auto Filler;

Το Google Forms Auto Filler είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Murat Serhat Alperen, και η κύρια λειτουργία του είναι "Automatically fills google forms.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Google Forms Auto Filler

Λήψη αρχείων επέκτασης Google Forms Auto Filler σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Google Forms Auto Filler Google Forms Auto Filler
ID jdjlkmjjmpdbmejkicfjokkgifdkpjek
Επίσημο URL https://chromewebstore.google.com/detail/google-forms-auto-filler/jdjlkmjjmpdbmejkicfjokkgifdkpjek
Περιγραφή Automatically fills google forms.
Μέγεθος Αρχείου 124 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 0.2.3
Τελευταία Ενημέρωση 2022-03-15
Ημερομηνία Δημοσίευσης 2021-01-28
Αξιολόγηση 3.27/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής Murat Serhat Alperen
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/muratalperen/GoogleFormsAutoFiller
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}