Google Forms Autocomplete

Extension that enables the autocomplete system on Google Forms

Wat is Google Forms Autocomplete?

Google Forms Autocomplete is een Chrome-extensie ontwikkeld door Heitor Eleutério, en de belangrijkste functie is "Extension that enables the autocomplete system on Google Forms".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Google Forms Autocomplete

Download Google Forms Autocomplete-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Optimize your forms and have a more productive work cycle with a fully customizable forms autocomplete.                    

Basisinformatie over de Extensie

Naam Google Forms Autocomplete Google Forms Autocomplete
ID depehdamecodbkkcofaplnnbcoagijdp
Officiële URL https://chromewebstore.google.com/detail/google-forms-autocomplete/depehdamecodbkkcofaplnnbcoagijdp
Beschrijving Extension that enables the autocomplete system on Google Forms
Bestandsgrootte 36.46 KB
Aantal Installaties 326
Huidige Versie 1.0.0.0
Laatst Bijgewerkt 2023-04-02
Publicatiedatum 2023-04-02
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Heitor Eleutério
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Forms Autocomplete",
    "description": "Extension that enables the autocomplete system on Google Forms",
    "version": "1.0.0.0",
    "icons": {
        "16": "\/images\/google-forms-16.png",
        "48": "\/images\/google-forms-48.png",
        "128": "\/images\/google-forms-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/forms\/*"
            ],
            "js": [
                "\/src\/script.js"
            ],
            "css": [
                "\/src\/style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "resources": [
                "\/src\/classes.js"
            ]
        }
    ],
    "action": {
        "default_popup": "\/src\/page\/index.html",
        "default_title": "Google Forms Autocomplete",
        "default_icon": {
            "16": "\/images\/google-forms-16.png",
            "48": "\/images\/google-forms-48.png",
            "128": "\/images\/google-forms-128.png"
        }
    },
    "permissions": [
        "storage"
    ]
}