FormData Viewer
View HTML FormData of all the forms on the page quickly with this utility. Shows hidden forms and hidden fields
什么是FormData Viewer?
FormData Viewer是由https://time2hack.com开发的Chrome扩展程序,该扩展的主要功能是“View HTML FormData of all the forms on the page quickly with this utility. Shows hidden forms and hidden fields”。
扩展截图
下载FormData Viewer扩展crx文件
下载FormData Viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Extension to view the FormData of all the forms on the page
Shows hidden forms and hidden fields 扩展基本信息
| 名称 | |
| ID | mnjfjpoendmmboclknfcllimnneeiflg |
| 官方URL | https://chromewebstore.google.com/detail/formdata-viewer/mnjfjpoendmmboclknfcllimnneeiflg |
| 简介 | View HTML FormData of all the forms on the page quickly with this utility. Shows hidden forms and hidden fields |
| 文件大小 | 58.16 KB |
| 安装次数 | 287 |
| 当前版本 | 0.2 |
| 更新时间 | 2019-10-18 |
| 上架时间 | 2019-10-16 |
| 开发者 | https://time2hack.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://time2hack.com/contact |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "FormData Viewer",
"description": "View HTML FormData of all the forms on the page quickly with this utility.\n\nShows hidden forms and hidden fields",
"version": "0.2",
"homepage_url": "https:\/\/time2hack.com\/extensions\/formdata-viewer",
"browser_action": {
"default_icon": "icons\/icon-switch-128.png",
"default_title": "FormData Viewer",
"default_popup": "popup.html"
},
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"contentScript.js"
]
}
],
"icons": {
"16": "icons\/icon-switch-16.png",
"48": "icons\/icon-switch-48.png",
"128": "icons\/icon-switch-128.png"
}
} | |