Google Forms Auto Filler

Automatically fills google forms.

Co je Google Forms Auto Filler?

Google Forms Auto Filler je rozšíření Chrome vyvinuté Murat Serhat Alperen, a jeho hlavní funkcí je „Automatically fills google forms.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Google Forms Auto Filler

Stáhněte si soubory rozšíření Google Forms Auto Filler ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Google Forms Auto Filler Google Forms Auto Filler
ID jdjlkmjjmpdbmejkicfjokkgifdkpjek
Oficiální URL https://chromewebstore.google.com/detail/google-forms-auto-filler/jdjlkmjjmpdbmejkicfjokkgifdkpjek
Popis Automatically fills google forms.
Velikost souboru 124 KB
Počet instalací 10,000
Aktuální Verze 0.2.3
Poslední Aktualizace 2022-03-15
Datum Vydání 2021-01-28
Hodnocení 3.27/5 Celkem 11 Hodnocení
Vývojář Murat Serhat Alperen
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/muratalperen/GoogleFormsAutoFiller
Podporované Jazyky 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"
            ]
        }
    ]
}