Google Forms Autocomplete

Extension that enables the autocomplete system on Google Forms

Co je Google Forms Autocomplete?

Google Forms Autocomplete je rozšíření Chrome vyvinuté Heitor Eleutério, a jeho hlavní funkcí je „Extension that enables the autocomplete system on Google Forms“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

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

Stáhněte si soubory rozšíření Google Forms Autocomplete 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í

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

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

Název Google Forms Autocomplete Google Forms Autocomplete
ID depehdamecodbkkcofaplnnbcoagijdp
Oficiální URL https://chromewebstore.google.com/detail/google-forms-autocomplete/depehdamecodbkkcofaplnnbcoagijdp
Popis Extension that enables the autocomplete system on Google Forms
Velikost souboru 36.46 KB
Počet instalací 326
Aktuální Verze 1.0.0.0
Poslední Aktualizace 2023-04-02
Datum Vydání 2023-04-02
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Heitor Eleutério
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}