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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |