Input Recorder
Record the values of the input elements(text boxes, drop-down boxes, check boxes etc) , so you can restored them in future.
什么是Input Recorder?
Input Recorder是由https://manxisuo.tk开发的Chrome扩展程序,该扩展的主要功能是“Record the values of the input elements(text boxes, drop-down boxes, check boxes etc) , so you can restored them in future.”。
扩展截图
下载Input Recorder扩展crx文件
下载Input Recorder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
1. 记录网站的用户名和密码,下次登录时不用再重新输入。
2. 记录表单中的数据,以后可以瞬间充填。
对web开发、测试人员更加有用。 扩展基本信息
| 名称 | |
| ID | endkfhomobijnknngmdfcooaafdmfbfj |
| 官方URL | https://chromewebstore.google.com/detail/input-recorder/endkfhomobijnknngmdfcooaafdmfbfj |
| 简介 | Record the values of the input elements(text boxes, drop-down boxes, check boxes etc) , so you can restored them in future. |
| 文件大小 | 116 KB |
| 安装次数 | 29 |
| 当前版本 | 1.0.6 |
| 更新时间 | 2013-11-18 |
| 上架时间 | 2013-11-18 |
| 评分 | 4.00/5 共1次评分 |
| 开发者 | https://manxisuo.tk |
| 付费类型 | free |
| 扩展官网 | http://manxisuo.tk/2013/11/10/input-recorder/ |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "1.0.6",
"default_locale": "en",
"icons": {
"16": "img\/16.png",
"48": "img\/48.png",
"128": "img\/128.png"
},
"browser_action": {
"default_icon": "img\/48.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"style\/injected.css"
],
"js": [
"script\/jquery-1.9.1.min.js",
"script\/injected.js"
]
}
],
"permissions": [
"tabs"
],
"web_accessible_resources": [
"script\/jquery.min.map"
],
"options_page": "options.html"
} | |