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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |