WebApp Form Filler
Automatically fills forms in your web applications. Especially handy for manual testing and development.
什麼是WebApp Form Filler?
WebApp Form Filler是由https://www.coeps.com開發的Chrome擴展程式,該擴展的主要功能是“Automatically fills forms in your web applications. Especially handy for manual testing and development.”。
擴展截圖
下載WebApp Form Filler擴展crx文件
下載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 |
官方網址 | 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" } } |