Google Forms Autocomplete

Extension that enables the autocomplete system on Google Forms

Apa itu Google Forms Autocomplete?

Google Forms Autocomplete adalah ekstensi Chrome yang dikembangkan oleh Heitor Eleutério, dan fitur utamanya adalah "Extension that enables the autocomplete system on Google Forms".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Google Forms Autocomplete

Unduh file ekstensi Google Forms Autocomplete dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Google Forms Autocomplete Google Forms Autocomplete
ID depehdamecodbkkcofaplnnbcoagijdp
URL Resmi https://chromewebstore.google.com/detail/google-forms-autocomplete/depehdamecodbkkcofaplnnbcoagijdp
Deskripsi Extension that enables the autocomplete system on Google Forms
Ukuran File 36.46 KB
Jumlah Instalasi 326
Versi Saat Ini 1.0.0.0
Terakhir Diperbarui 2023-04-02
Tanggal Publikasi 2023-04-02
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Heitor Eleutério
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}