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 |
Eメール | [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 } |