Input Field Validator
Extension to validate inbrowser input text field elements!
¿Qué es Input Field Validator?
Input Field Validator es una extensión de Chrome desarrollada por aathiraja.k, y su función principal es "Extension to validate inbrowser input text field elements!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Input Field Validator
Descarga archivos de extensión Input Field Validator 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
This extension will provide an easiest way finding input text fields in the active tab which has No Validations added to them. Validates the input elements with set of data and get list of not-validated fields. This script will get every input text elements captured and values of different data types will be entered to individual. Fields that doesn't have validations will be determined by the script. Report of the input fields with No Validations can be downloaded from the extension menu.
Información Básica de la Extensión
Nombre | |
ID | bdldcibehhfoilmnnakijkaagjibjjid |
URL Oficial | https://chromewebstore.google.com/detail/input-field-validator/bdldcibehhfoilmnnakijkaagjibjjid |
Descripción | Extension to validate inbrowser input text field elements! |
Tamaño del Archivo | 319 KB |
Cantidad de Instalaciones | 53 |
Versión Actual | 1.0 |
Última Actualización | 2021-03-31 |
Fecha de Publicación | 2021-03-31 |
Desarrollador | aathiraja.k |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Input Field Validator", "version": "1.0", "description": "Extension to validate inbrowser input text field elements!", "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "script.js", "jspdf.min.js", "html2canvas.js", "html2canvas.min.js" ] } ], "browser_action": { "default_popup": "popup.html", "default_title": "Input field Validator", "default_icon": "print_16x16.png" }, "manifest_version": 2 } |