Google Forms Autocomplete
Extension that enables the autocomplete system on Google Forms
Co to jest Google Forms Autocomplete?
Google Forms Autocomplete to rozszerzenie Chrome opracowane przez Heitor Eleutério, a jego główną funkcją jest „Extension that enables the autocomplete system on Google Forms”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Forms Autocomplete
Pobierz pliki rozszerzeń Google Forms Autocomplete w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Optimize your forms and have a more productive work cycle with a fully customizable forms autocomplete.
Podstawowe informacje o rozszerzeniu
Nazwa | Google Forms Autocomplete |
ID | depehdamecodbkkcofaplnnbcoagijdp |
Oficjalny URL | https://chromewebstore.google.com/detail/google-forms-autocomplete/depehdamecodbkkcofaplnnbcoagijdp |
Opis | Extension that enables the autocomplete system on Google Forms |
Rozmiar pliku | 36.46 KB |
Liczba instalacji | 326 |
Aktualna Wersja | 1.0.0.0 |
Ostatnia Aktualizacja | 2023-04-02 |
Data Publikacji | 2023-04-02 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Heitor Eleutério |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |