Input Field Validator
Extension to validate inbrowser input text field elements!
Input Field Validator क्या है?
Input Field Validator aathiraja.k द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to validate inbrowser input text field elements!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Input Field Validator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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 } |