WebApp Form Filler
Automatically fills forms in your web applications. Especially handy for manual testing and development.
Co je WebApp Form Filler?
WebApp Form Filler je rozšíření Chrome vyvinuté https://www.coeps.com, a jeho hlavní funkcí je „Automatically fills forms in your web applications. Especially handy for manual testing and development.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření WebApp Form Filler
Stáhněte si soubory rozšíření WebApp Form Filler ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | WebApp Form Filler |
ID | nmkmpldhpejmploidnhchbohelkfnokk |
Oficiální URL | https://chromewebstore.google.com/detail/webapp-form-filler/nmkmpldhpejmploidnhchbohelkfnokk |
Popis | Automatically fills forms in your web applications. Especially handy for manual testing and development. |
Velikost souboru | 20.08 KB |
Počet instalací | 1,161 |
Aktuální Verze | 0.0.8 |
Poslední Aktualizace | 2019-02-16 |
Datum Vydání | 2019-02-16 |
Vývojář | https://www.coeps.com |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/coeps-github/chrome-webapp-form-fill-extension |
Podporované Jazyky | 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" } } |