Hidden Form Finder
See all Hidden Fields on the Page!
Hidden Form Finder란 무엇입니까?
Hidden Form Finder은(는) https://www.softwarebyjoe.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See all Hidden Fields on the Page!"입니다.
확장 프로그램 스크린샷
Hidden Form Finder 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
See all hidden form fields on the page. Are you doing development and need help testing hidden form fields? Or, just interested in seeing what information the site you are on is passing about you! Either way, this extension makes it extremely easy to see all hidden form fields on the page. The extension currently has 2 modes of providing hidden field info: 1) The HFF Toolbar 2) JavaScript console logging These options can each be turned and off through the options page. Additionally, there is a timer in case you want the toolbar to dissappear after a certain amount of time. Future potential features: - ability to whitelist for sites not to show toolbar for Update 0.2 - 4/5/2014 - Added scrollbar for pages with large numbers of hidden fields. - Added Browser Icon that goes right to the Options page
확장 프로그램 기본 정보
이름 | Hidden Form Finder |
ID | adglgkhcpfdcocgekhbkghpajnbgcekd |
공식 URL | https://chromewebstore.google.com/detail/hidden-form-finder/adglgkhcpfdcocgekhbkghpajnbgcekd |
설명 | See all Hidden Fields on the Page! |
파일 크기 | 281 KB |
설치 횟수 | 650 |
현재 버전 | 0.2 |
최근 업데이트 | 2014-04-05 |
출시 날짜 | 2014-04-05 |
평점 | 3.50/5 총 4 개의 평점 |
개발자 | https://www.softwarebyjoe.com |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hidden Form Finder", "short_name": "HFF", "version": "0.2", "description": "See all Hidden Fields on the Page!", "icons": { "128": "128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "hffstyles.css" ], "js": [ "jquery.js", "hffmain.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "icon19.png", "default_popup": "options.html" }, "options_page": "options.html", "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "manifest_version": 2 } |