HTML5 Form validation remover

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

Was ist HTML5 Form validation remover?

HTML5 Form validation remover ist eine Chrome-Erweiterung, die von Damien Alexandre entwickelt wurde, und ihr Hauptmerkmal ist "Simple button to press when you want HTML5 Form validation to be removed from all the forms.".

Erweiterungsscreenshots

screenshot

HTML5 Form validation remover-Erweiterungs-CRX-Datei herunterladen

Laden Sie HTML5 Form validation remover-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name HTML5 Form validation remover HTML5 Form validation remover
ID dcpagcgkpeflhhampddilklcnjdjlmlb
Offizielle URL https://chromewebstore.google.com/detail/html5-form-validation-rem/dcpagcgkpeflhhampddilklcnjdjlmlb
Beschreibung Simple button to press when you want HTML5 Form validation to be removed from all the forms.
Dateigröße 5.47 KB
Installationsanzahl 2,547
Aktuelle Version 2.0
Letztes Update 2017-07-22
Veröffentlichungsdatum 2017-07-22
Bewertung 3.50/5 Insgesamt 14 Bewertungen
Entwickler Damien Alexandre
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/damienalexandre/form-validation-remover
Hilfeseite URL https://github.com/damienalexandre/form-validation-remover/issues
Unterstützte Sprachen 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
}