Input Field Validator
Extension to validate inbrowser input text field elements!
什么是Input Field Validator?
Input Field Validator是由aathiraja.k开发的Chrome扩展程序,该扩展的主要功能是“Extension to validate inbrowser input text field elements!”。
扩展截图
下载Input Field Validator扩展crx文件
下载Input Field Validator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | bdldcibehhfoilmnnakijkaagjibjjid |
官方URL | https://chromewebstore.google.com/detail/input-field-validator/bdldcibehhfoilmnnakijkaagjibjjid |
简介 | Extension to validate inbrowser input text field elements! |
文件大小 | 319 KB |
安装次数 | 53 |
当前版本 | 1.0 |
更新时间 | 2021-03-31 |
上架时间 | 2021-03-31 |
开发者 | aathiraja.k |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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 } |