Form Inspector
Inspect, modify, and test live forms with ease
¿Qué es Form Inspector?
Form Inspector es una extensión de Chrome desarrollada por Kinman Covey, y su función principal es "Inspect, modify, and test live forms with ease".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Form Inspector
Descarga archivos de extensión Form Inspector en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Easily inspect, debug, and test live forms on any website. Form inspector allows you to: + Modify input values (including hidden inputs) + Submit forms straight from the extension + A testing mode that automatically fills in form inputs when opening the extension + Custom default test values for quick testing + Honeypot avoidance Test mode makes it easier than ever to perform test submissions on forms. 1. Provide default input values in the Test mode options 2. Activate Test mode by clicking the checkbox 3. Open the extension on any page to autofill forms with your default values 4. Click submit. No more repetitive typing!
Información Básica de la Extensión
Nombre | Form Inspector |
ID | ngbpjbijlmghjooeejfjfmgjfmlkfpbg |
URL Oficial | https://chromewebstore.google.com/detail/form-inspector/ngbpjbijlmghjooeejfjfmgjfmlkfpbg |
Descripción | Inspect, modify, and test live forms with ease |
Tamaño del Archivo | 14.67 KB |
Cantidad de Instalaciones | 419 |
Versión Actual | 1.1 |
Última Actualización | 2018-04-24 |
Fecha de Publicación | 2018-04-23 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Kinman Covey |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/kin5/form-inspector |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Form Inspector", "version": "1.1", "description": "Inspect, modify, and test live forms with ease", "manifest_version": 2, "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "permissions": [ "activeTab", "storage" ], "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |