WebApp Form Filler
Automatically fills forms in your web applications. Especially handy for manual testing and development.
WebApp Form Fillerคืออะไร?
WebApp Form Filler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.coeps.com และคุณลักษณะหลักของมันคือ "Automatically fills forms in your web applications. Especially handy for manual testing and development."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WebApp Form Filler
ดาวน์โหลดไฟล์ส่วนขยาย WebApp Form Filler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This tool allows to organize rules that describe how your forms are being filled or clicked. The rules can be ordered, exported and imported (json). It comes with a select tool to highlight form elements and get possible selectors automatically. This software is open source and under the MIT license. https://github.com/coeps-github/chrome-webapp-form-fill-extension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | WebApp Form Filler |
ID | nmkmpldhpejmploidnhchbohelkfnokk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/webapp-form-filler/nmkmpldhpejmploidnhchbohelkfnokk |
คำอธิบาย | Automatically fills forms in your web applications. Especially handy for manual testing and development. |
ขนาดไฟล์ | 20.08 KB |
จำนวนการติดตั้ง | 1,161 |
เวอร์ชันปัจจุบัน | 0.0.8 |
อัปเดตครั้งล่าสุด | 2019-02-16 |
วันที่เผยแพร่ | 2019-02-16 |
ผู้พัฒนา | https://www.coeps.com |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/coeps-github/chrome-webapp-form-fill-extension |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WebApp Form Filler", "short_name": "WAFF", "version": "0.0.8", "description": "Automatically fills forms in your web applications. Especially handy for manual testing and development.", "manifest_version": 2, "permissions": [ "activeTab", "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |