HTML5 Form validation remover

Simple button to press when you want HTML5 Form validation to be removed from all the forms.

Qu'est-ce que HTML5 Form validation remover ?

HTML5 Form validation remover est une extension Chrome développée par Damien Alexandre, et sa fonction principale est "Simple button to press when you want HTML5 Form validation to be removed from all the forms.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension HTML5 Form validation remover

Téléchargez les fichiers d'extension HTML5 Form validation remover 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

                        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!                    

Informations de Base sur l'Extension

Nom HTML5 Form validation remover HTML5 Form validation remover
ID dcpagcgkpeflhhampddilklcnjdjlmlb
URL Officiel https://chromewebstore.google.com/detail/html5-form-validation-rem/dcpagcgkpeflhhampddilklcnjdjlmlb
Description Simple button to press when you want HTML5 Form validation to be removed from all the forms.
Taille du Fichier 5.47 KB
Nombre d'Installations 2,547
Version Actuelle 2.0
Dernière Mise à Jour 2017-07-22
Date de Publication 2017-07-22
Évaluation 3.50/5 Total 14 Évaluations
Développeur Damien Alexandre
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/damienalexandre/form-validation-remover
URL de la Page d'Aide https://github.com/damienalexandre/form-validation-remover/issues
Langues Prises en Charge 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
}