Input Field Validator

Extension to validate inbrowser input text field elements!

Input Field Validatorคืออะไร?

Input Field Validator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aathiraja.k และคุณลักษณะหลักของมันคือ "Extension to validate inbrowser input text field elements!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Input Field Validator

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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
}