Input Field Validator
Extension to validate inbrowser input text field elements!
O que é Input Field Validator?
Input Field Validator é uma extensão do Chrome desenvolvida por aathiraja.k, e sua principal característica é "Extension to validate inbrowser input text field elements!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Input Field Validator
Baixe arquivos de extensão Input Field Validator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | bdldcibehhfoilmnnakijkaagjibjjid |
URL Oficial | https://chromewebstore.google.com/detail/input-field-validator/bdldcibehhfoilmnnakijkaagjibjjid |
Descrição | Extension to validate inbrowser input text field elements! |
Tamanho do Arquivo | 319 KB |
Contagem de Instalações | 53 |
Versão Atual | 1.0 |
Última Atualização | 2021-03-31 |
Data de Publicação | 2021-03-31 |
Desenvolvedor | aathiraja.k |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } |