HTML5 Form validation remover
Simple button to press when you want HTML5 Form validation to be removed from all the forms.
ما هو HTML5 Form validation remover؟
HTML5 Form validation remover هو إضافة Chrome تم تطويرها بواسطة Damien Alexandre، والميزة الرئيسية لها هي "Simple button to press when you want HTML5 Form validation to be removed from all the forms.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة HTML5 Form validation remover
قم بتنزيل ملفات الامتداد HTML5 Form validation remover بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Remove HTML5 Form constraints, allowing you to submit any form even if there is a required attribute or other custom input type. This extension add a novalidate attribute on all the forms of the current page, even the ones loaded via AJAX. The public of this extension is mainly developers wishing to test their backend form validation from a modern browser. How to use it ============= When browsing a webpage with a Form, click the button and the extension will disable validation on all the forms. It's open source =============== Checkout the website below, this extension is open source and you can help!
معلومات أساسية عن التمديد
الاسم | HTML5 Form validation remover |
ID | dcpagcgkpeflhhampddilklcnjdjlmlb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/html5-form-validation-rem/dcpagcgkpeflhhampddilklcnjdjlmlb |
الوصف | Simple button to press when you want HTML5 Form validation to be removed from all the forms. |
حجم الملف | 5.47 KB |
عدد التثبيتات | 2,547 |
النسخة الحالية | 2.0 |
آخر تحديث | 2017-07-22 |
تاريخ النشر | 2017-07-22 |
تقييم | 3.50/5 مجموع تقييمات 14 |
المطور | Damien Alexandre |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/damienalexandre/form-validation-remover |
عنوان صفحة المساعدة | https://github.com/damienalexandre/form-validation-remover/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HTML5 Form validation remover", "description": "Simple button to press when you want HTML5 Form validation to be removed from all the forms.", "author": "Damien ALEXANDRE", "version": "2.0", "homepage_url": "https:\/\/github.com\/damienalexandre\/form-validation-remover", "permissions": [ "activeTab" ], "browser_action": { "name": "Remove HTML5 Form validation", "default_icon": "images\/icon.png", "default_title": "Remove HTML5 Form validation" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "manifest_version": 2 } |