HTML5 Form validation remover
Simple button to press when you want HTML5 Form validation to be removed from all the forms.
¿Qué es HTML5 Form validation remover?
HTML5 Form validation remover es una extensión de Chrome desarrollada por Damien Alexandre, y su función principal es "Simple button to press when you want HTML5 Form validation to be removed from all the forms.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión HTML5 Form validation remover
Descarga archivos de extensión HTML5 Form validation remover en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | HTML5 Form validation remover |
ID | dcpagcgkpeflhhampddilklcnjdjlmlb |
URL Oficial | https://chromewebstore.google.com/detail/html5-form-validation-rem/dcpagcgkpeflhhampddilklcnjdjlmlb |
Descripción | Simple button to press when you want HTML5 Form validation to be removed from all the forms. |
Tamaño del Archivo | 5.47 KB |
Cantidad de Instalaciones | 2,547 |
Versión Actual | 2.0 |
Última Actualización | 2017-07-22 |
Fecha de Publicación | 2017-07-22 |
Calificación | 3.50/5 Total de 14 Calificaciones |
Desarrollador | Damien Alexandre |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/damienalexandre/form-validation-remover |
URL de la Página de Ayuda | https://github.com/damienalexandre/form-validation-remover/issues |
Idiomas Soportados | 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 } |