Google Forms Autocomplete
Extension that enables the autocomplete system on Google Forms
Hvad er Google Forms Autocomplete?
Google Forms Autocomplete er en Chrome-udvidelse udviklet af Heitor Eleutério, og dens hovedfunktion er "Extension that enables the autocomplete system on Google Forms".
Udvidelsesskærmbilleder
Download Google Forms Autocomplete-udvidelses-CRX-fil
Download Google Forms Autocomplete-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Optimize your forms and have a more productive work cycle with a fully customizable forms autocomplete. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | depehdamecodbkkcofaplnnbcoagijdp |
| Officiel URL | https://chromewebstore.google.com/detail/google-forms-autocomplete/depehdamecodbkkcofaplnnbcoagijdp |
| Beskrivelse | Extension that enables the autocomplete system on Google Forms |
| Filstørrelse | 36.46 KB |
| Antal Installationer | 326 |
| Nuværende Version | 1.0.0.0 |
| Senest Opdateret | 2023-04-02 |
| Udgivelsesdato | 2023-04-02 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | Heitor Eleutério |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
} | |