Input Field Validator

Extension to validate inbrowser input text field elements!

Wat is Input Field Validator?

Input Field Validator is een Chrome-extensie ontwikkeld door aathiraja.k, en de belangrijkste functie is "Extension to validate inbrowser input text field elements!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Input Field Validator

Download Input Field Validator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Input Field Validator Input Field Validator
ID bdldcibehhfoilmnnakijkaagjibjjid
Officiële URL https://chromewebstore.google.com/detail/input-field-validator/bdldcibehhfoilmnnakijkaagjibjjid
Beschrijving Extension to validate inbrowser input text field elements!
Bestandsgrootte 319 KB
Aantal Installaties 53
Huidige Versie 1.0
Laatst Bijgewerkt 2021-03-31
Publicatiedatum 2021-03-31
Ontwikkelaar aathiraja.k
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}