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!"입니다.

확장 프로그램 스크린샷

screenshot

Input Field Validator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Input Field Validator Input Field Validator
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
}