Google Forms Autocomplete
Extension that enables the autocomplete system on Google Forms
ما هو Google Forms Autocomplete؟
Google Forms Autocomplete هو إضافة Chrome تم تطويرها بواسطة Heitor Eleutério، والميزة الرئيسية لها هي "Extension that enables the autocomplete system on Google Forms".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google Forms Autocomplete
قم بتنزيل ملفات الامتداد Google Forms Autocomplete بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Optimize your forms and have a more productive work cycle with a fully customizable forms autocomplete.
معلومات أساسية عن التمديد
الاسم | Google Forms Autocomplete |
ID | depehdamecodbkkcofaplnnbcoagijdp |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/google-forms-autocomplete/depehdamecodbkkcofaplnnbcoagijdp |
الوصف | Extension that enables the autocomplete system on Google Forms |
حجم الملف | 36.46 KB |
عدد التثبيتات | 326 |
النسخة الحالية | 1.0.0.0 |
آخر تحديث | 2023-04-02 |
تاريخ النشر | 2023-04-02 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Heitor Eleutério |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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" ] } |