Input Field Validator

Extension to validate inbrowser input text field elements!

Qu'est-ce que Input Field Validator ?

Input Field Validator est une extension Chrome développée par aathiraja.k, et sa fonction principale est "Extension to validate inbrowser input text field elements!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Input Field Validator

Téléchargez les fichiers d'extension Input Field Validator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Input Field Validator Input Field Validator
ID bdldcibehhfoilmnnakijkaagjibjjid
URL Officiel https://chromewebstore.google.com/detail/input-field-validator/bdldcibehhfoilmnnakijkaagjibjjid
Description Extension to validate inbrowser input text field elements!
Taille du Fichier 319 KB
Nombre d'Installations 53
Version Actuelle 1.0
Dernière Mise à Jour 2021-03-31
Date de Publication 2021-03-31
Développeur aathiraja.k
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}