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文件
下載Hidden Form Finder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 } |