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
官方網址 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
說明頁面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
}