Google Forms Autocomplete

Extension that enables the autocomplete system on Google Forms

What is Google Forms Autocomplete?

Google Forms Autocomplete is a Chrome extension developed by Heitor Eleutério, and its main feature is "Extension that enables the autocomplete system on Google Forms".

Extension Screenshots

screenshot
screenshot
screenshot

Download Google Forms Autocomplete Extension CRX File

Download Google Forms Autocomplete extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Google Forms Autocomplete Google Forms Autocomplete
ID depehdamecodbkkcofaplnnbcoagijdp
Official URL https://chromewebstore.google.com/detail/google-forms-autocomplete/depehdamecodbkkcofaplnnbcoagijdp
Description Extension that enables the autocomplete system on Google Forms
File Size 36.46 KB
Installation Count 326
Current Version 1.0.0.0
Last Updated 2023-04-02
Publish Date 2023-04-02
Rating 5.00/5 Total 1 Ratings
Developer Heitor Eleutério
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}