Google Forms Autocomplete
Extension that enables the autocomplete system on Google Forms
Vad är Google Forms Autocomplete?
Google Forms Autocomplete är en Chrome-tillägg utvecklad av Heitor Eleutério, och dess huvudfunktion är "Extension that enables the autocomplete system on Google Forms".
Tilläggsskärmbilder
Ladda ner Google Forms Autocomplete-förlängningens CRX-fil
Ladda ner Google Forms Autocomplete-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Optimize your forms and have a more productive work cycle with a fully customizable forms autocomplete.
Grundläggande Information om Tillägg
Namn | Google Forms Autocomplete |
ID | depehdamecodbkkcofaplnnbcoagijdp |
Officiell webbadress | https://chromewebstore.google.com/detail/google-forms-autocomplete/depehdamecodbkkcofaplnnbcoagijdp |
Beskrivning | Extension that enables the autocomplete system on Google Forms |
Filstorlek | 36.46 KB |
Antal Installationer | 326 |
Aktuell Version | 1.0.0.0 |
Senast Uppdaterad | 2023-04-02 |
Publiceringsdatum | 2023-04-02 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Heitor Eleutério |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |