Hidden Input Finder
Find if there is a hidden input field
什么是Hidden Input Finder?
Hidden Input Finder是由PTC开发的Chrome扩展程序,该扩展的主要功能是“Find if there is a hidden input field”。
扩展截图
下载Hidden Input Finder扩展crx文件
下载Hidden Input Finder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
2022/09/20 Update: remove unnecessary permission 扩展基本信息
| 名称 | |
| ID | dekoidpnemkjhliakocnefjglakopanf |
| 官方URL | https://chromewebstore.google.com/detail/hidden-input-finder/dekoidpnemkjhliakocnefjglakopanf |
| 简介 | Find if there is a hidden input field |
| 文件大小 | 245 KB |
| 安装次数 | 388 |
| 当前版本 | 1.3 |
| 更新时间 | 2022-09-20 |
| 上架时间 | 2019-04-07 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | PTC |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/ptc0219/Hidden-Input-Finder |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hidden Input Finder",
"description": "Find if there is a hidden input field",
"version": "1.3",
"author": "Jimmy Pan",
"icons": {
"16": "icon\/icon16.png",
"24": "icon\/icon24.png",
"32": "icon\/icon32.png",
"128": "icon\/icon128.png",
"512": "icon\/icon512.png"
},
"browser_action": {
"default_icon": {
"16": "icon\/icon16.png",
"24": "icon\/icon24.png",
"32": "icon\/icon32.png",
"128": "icon\/icon128.png",
"512": "icon\/icon512.png"
},
"default_title": "Hidden Input Finder",
"default_popup": "popup.html"
},
"permissions": [
"*:\/\/*\/*",
"file:\/\/\/*\/*",
"activeTab"
],
"background": {
"scripts": [
"js\/jquery-3.1.1.min.js",
"js\/background.js"
],
"persistent": false
}
} | |