WebApp Form Filler
Automatically fills forms in your web applications. Especially handy for manual testing and development.
Cos'è WebApp Form Filler?
WebApp Form Filler è un'estensione di Chrome sviluppata da https://www.coeps.com, e la sua funzione principale è "Automatically fills forms in your web applications. Especially handy for manual testing and development.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione WebApp Form Filler
Scarica i file di estensione WebApp Form Filler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | WebApp Form Filler |
ID | nmkmpldhpejmploidnhchbohelkfnokk |
URL Ufficiale | https://chromewebstore.google.com/detail/webapp-form-filler/nmkmpldhpejmploidnhchbohelkfnokk |
Descrizione | Automatically fills forms in your web applications. Especially handy for manual testing and development. |
Dimensione del File | 20.08 KB |
Conteggio Installazioni | 1,161 |
Versione Corrente | 0.0.8 |
Ultimo Aggiornamento | 2019-02-16 |
Data di Pubblicazione | 2019-02-16 |
Sviluppatore | https://www.coeps.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/coeps-github/chrome-webapp-form-fill-extension |
Lingue Supportate | 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" } } |