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はDamien Alexandreによって開発されたChromeの拡張機能で、その主な機能は「Simple button to press when you want HTML5 Form validation to be removed from all the forms.」です。

拡張機能のスクリーンショット

screenshot

HTML5 Form validation remover拡張機能のCRXファイルをダウンロード

HTML5 Form validation remover拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 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
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/damienalexandre/form-validation-remover
ヘルプページのURL 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
}