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.”。
扩展截图
下载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 |
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 |
电子邮箱 | [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 } |